19 lines
495 B
TypeScript
19 lines
495 B
TypeScript
import Header from '@/components/Header';
|
|
import Footer from '@/components/Footer';
|
|
import CollectionDetail from '@/components/CollectionDetail';
|
|
import config from '@/lib/config.json';
|
|
|
|
export default function Home() {
|
|
const collectionHandle = config.data.collection;
|
|
|
|
return (
|
|
<div className="flex flex-col min-h-screen">
|
|
<Header />
|
|
<main className="flex-1">
|
|
<CollectionDetail collectionHandle={collectionHandle} />
|
|
</main>
|
|
<Footer />
|
|
</div>
|
|
);
|
|
}
|