forked from crowetic/commerce
26 lines
568 B
TypeScript
26 lines
568 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 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>
|
||
|
</>
|
||
|
);
|
||
|
}
|