mirror of
https://github.com/vercel/commerce.git
synced 2025-05-15 14:06:59 +00:00
19 lines
400 B
TypeScript
19 lines
400 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 default function Landing() {
|
|
return (
|
|
<>
|
|
<ThreeItemGrid />
|
|
<Suspense>
|
|
<Carousel />
|
|
<Suspense>
|
|
<Footer />
|
|
</Suspense>
|
|
</Suspense>
|
|
</>
|
|
);
|
|
}
|