Initial commit

This commit is contained in:
Rami Bitar
2026-04-19 11:15:55 -04:00
commit eeeafd36d3
78 changed files with 10412 additions and 0 deletions

18
app/page.tsx Normal file
View File

@@ -0,0 +1,18 @@
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>
);
}