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 { Suspense } from 'react'; export const runtime = 'edge'; 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}