mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 23:46:58 +00:00
30 lines
650 B
TypeScript
30 lines
650 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: 'Welcome to The Happy Ape, where joy meets compassion!',
|
|
openGraph: {
|
|
type: 'website'
|
|
}
|
|
};
|
|
|
|
export default async function HomePage() {
|
|
return (
|
|
<>
|
|
<ComingSoon />
|
|
<Suspense>
|
|
{/* <Carousel /> */}
|
|
<Suspense>
|
|
<Footer />
|
|
</Suspense>
|
|
</Suspense>
|
|
</>
|
|
);
|
|
}
|