This commit is contained in:
karl
2025-03-26 15:29:57 -04:00
parent fa1306916c
commit c8f23ec4e3
300 changed files with 785 additions and 200 deletions

View File

@@ -1,21 +1,21 @@
import { Carousel } from 'components/carousel';
import { ThreeItemGrid } from 'components/grid/three-items';
import Footer from 'components/layout/footer';
import { Carousel } from 'components/carousel'
import { ThreeItemGrid } from 'components/grid/three-items'
import Footer from 'components/layout/footer'
export const metadata = {
description:
'High-performance ecommerce store built with Next.js, Vercel, and Shopify.',
openGraph: {
type: 'website'
}
};
type: 'website',
},
}
export default function HomePage() {
return (
<>
<ThreeItemGrid />
<Carousel />
<Footer />
{/* <ThreeItemGrid /> */}
{/* <Carousel /> */}
{/* <Footer /> */}
</>
);
)
}