mirror of
https://github.com/vercel/commerce.git
synced 2025-03-14 14:42:31 +00:00
28 lines
600 B
TypeScript
28 lines
600 B
TypeScript
|
import { Carousel } from 'components/carousel';
|
||
|
import { ThreeItemGrid } from 'components/grid/three-items';
|
||
|
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 (
|
||
|
<>
|
||
|
<ThreeItemGrid />
|
||
|
<Suspense>
|
||
|
<Carousel />
|
||
|
<Suspense>
|
||
|
<Footer />
|
||
|
</Suspense>
|
||
|
</Suspense>
|
||
|
</>
|
||
|
);
|
||
|
}
|