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 Shopify.', openGraph: { type: 'website' } }; // Simulate fetching page configuration from a CMS const pageConfig = { showFeaturedProducts: true, showPromotions: true }; // Placeholder Product Item Component function ProductItem({ name, price, imageUrl }: { name: string; price: string; imageUrl: string }) { return (
{price}