commerce/app/page.tsx
2024-02-20 14:09:38 -05:00

30 lines
670 B
TypeScript

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