2021-06-22 11:58:37 +00:00
|
|
|
import Head from 'next/head'
|
2022-02-05 22:18:26 +00:00
|
|
|
import { serverSideTranslations } from 'next-i18next/serverSideTranslations'
|
2021-06-22 13:55:53 +00:00
|
|
|
|
2022-01-29 07:40:50 +00:00
|
|
|
import siteConfig from '../config/site.config'
|
2021-06-22 13:55:53 +00:00
|
|
|
import Navbar from '../components/Navbar'
|
|
|
|
import FileListing from '../components/FileListing'
|
|
|
|
import Footer from '../components/Footer'
|
2021-06-23 20:27:51 +00:00
|
|
|
import Breadcrumb from '../components/Breadcrumb'
|
2022-02-08 15:30:12 +00:00
|
|
|
import SwitchLayout from '../components/SwitchLayout'
|
2021-06-22 11:58:37 +00:00
|
|
|
|
|
|
|
export default function Home() {
|
|
|
|
return (
|
2022-02-04 09:22:40 +00:00
|
|
|
<div className="flex min-h-screen flex-col items-center justify-center bg-white dark:bg-gray-900">
|
2021-06-22 11:58:37 +00:00
|
|
|
<Head>
|
2021-06-22 13:55:53 +00:00
|
|
|
<title>{siteConfig.title}</title>
|
2021-06-22 11:58:37 +00:00
|
|
|
</Head>
|
|
|
|
|
2022-02-04 09:22:40 +00:00
|
|
|
<main className="flex w-full flex-1 flex-col bg-gray-50 dark:bg-gray-800">
|
2021-06-22 13:55:53 +00:00
|
|
|
<Navbar />
|
2022-02-04 09:22:40 +00:00
|
|
|
<div className="mx-auto w-full max-w-5xl p-4">
|
2022-02-04 14:20:53 +00:00
|
|
|
<nav className="mb-4 flex items-center justify-between pl-1">
|
2022-02-04 09:22:40 +00:00
|
|
|
<Breadcrumb />
|
2022-02-04 14:20:53 +00:00
|
|
|
<SwitchLayout />
|
2022-02-04 09:22:40 +00:00
|
|
|
</nav>
|
2021-06-23 20:27:51 +00:00
|
|
|
<FileListing />
|
2021-06-22 13:55:53 +00:00
|
|
|
</div>
|
2021-06-22 11:58:37 +00:00
|
|
|
</main>
|
|
|
|
|
2021-06-22 13:55:53 +00:00
|
|
|
<Footer />
|
2021-06-22 11:58:37 +00:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
2022-02-05 22:18:26 +00:00
|
|
|
|
2022-02-05 22:54:52 +00:00
|
|
|
export async function getServerSideProps({ locale }) {
|
2022-02-05 22:18:26 +00:00
|
|
|
return {
|
|
|
|
props: {
|
2022-02-08 15:30:12 +00:00
|
|
|
...(await serverSideTranslations(locale, ['common'])),
|
|
|
|
},
|
2022-02-05 22:18:26 +00:00
|
|
|
}
|
|
|
|
}
|