mirror of
https://github.com/Nezumi-2711/onedrive-vercel-index.git
synced 2026-09-22 13:38:45 +00:00
28 lines
721 B
TypeScript
28 lines
721 B
TypeScript
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'
|
|
import Breadcrumb from '../components/Breadcrumb'
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="dark:bg-gray-900 flex flex-col items-center justify-center min-h-screen bg-white">
|
|
<Head>
|
|
<title>{siteConfig.title}</title>
|
|
</Head>
|
|
|
|
<main className="flex flex-col flex-1 w-full">
|
|
<Navbar />
|
|
<div className="w-full max-w-5xl p-4 mx-auto">
|
|
<Breadcrumb />
|
|
<FileListing />
|
|
</div>
|
|
</main>
|
|
|
|
<Footer />
|
|
</div>
|
|
)
|
|
}
|