diff --git a/app/page.tsx b/app/page.tsx index ea4f1946b..72b51633d 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,8 +1,7 @@ +import { Button } from '@/components/ui/button'; import { Carousel } from 'components/carousel'; -import Grid from 'components/grid'; import Footer from 'components/layout/footer'; -import ProductGridItems from 'components/layout/product-grid-items'; -import { getLiveProducts } from 'lib/utils'; +import Link from 'next/link'; import { Suspense } from 'react'; export const runtime = 'edge'; @@ -11,21 +10,25 @@ export const metadata = { description: 'scape²: art for the wall & wardrobe.', openGraph: { type: 'website' - } + }, }; export default async function HomePage() { - const liveProducts = await getLiveProducts({}); - return ( <> - {liveProducts.length > 0 ? ( - - - - ) : null} +
+ + + + + + +