mirror of
https://github.com/vercel/commerce.git
synced 2025-05-03 00:07:52 +00:00
22 lines
472 B
TypeScript
22 lines
472 B
TypeScript
import { Carousel } from "components/carousel";
|
|
import { ThreeItemGrid } from "components/grid/three-items";
|
|
import Footer from "components/layout/footer";
|
|
|
|
export const metadata = {
|
|
description:
|
|
"High-performance ecommerce store built with Next.js, Vercel, and Salesforce Commerce Cloud.",
|
|
openGraph: {
|
|
type: "website",
|
|
},
|
|
};
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<>
|
|
<ThreeItemGrid />
|
|
<Carousel />
|
|
<Footer />
|
|
</>
|
|
);
|
|
}
|