onedrive/pages/index.tsx

28 lines
749 B
TypeScript
Raw Normal View History

2021-06-22 11:58:37 +00:00
import Head from 'next/head'
import siteConfig from '../config/site.json'
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'
2021-06-22 11:58:37 +00:00
export default function Home() {
return (
2021-09-04 14:15:09 +00:00
<div className="dark:bg-gray-900 flex flex-col items-center justify-center min-h-screen bg-white">
2021-06-22 11:58:37 +00:00
<Head>
<title>{siteConfig.title}</title>
2021-06-22 11:58:37 +00:00
</Head>
2021-09-04 14:15:09 +00:00
<main className="bg-gray-50 dark:bg-gray-800 flex flex-col flex-1 w-full">
<Navbar />
2021-12-15 09:01:31 +00:00
<div className="w-full max-w-5xl p-4 mx-auto">
2021-06-23 20:27:51 +00:00
<Breadcrumb />
<FileListing />
</div>
2021-06-22 11:58:37 +00:00
</main>
<Footer />
2021-06-22 11:58:37 +00:00
</div>
)
}