mirror of
https://github.com/vercel/commerce.git
synced 2025-04-30 14:57:50 +00:00
20 lines
400 B
TypeScript
20 lines
400 B
TypeScript
import Footer from "components/layout/footer";
|
|
import { MainProductCard } from "components/product/main-product-card";
|
|
|
|
export const metadata = {
|
|
description:
|
|
"High-performance ecommerce store built with Next.js, Vercel, and Shopify.",
|
|
openGraph: {
|
|
type: "website",
|
|
},
|
|
};
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<>
|
|
<MainProductCard />
|
|
<Footer />
|
|
</>
|
|
);
|
|
}
|