mirror of
https://github.com/vercel/commerce.git
synced 2025-05-14 21:47:51 +00:00
46 lines
1012 B
TypeScript
46 lines
1012 B
TypeScript
import { ThreeItemGrid } from 'components/grid/three-items';
|
|
import Footer from 'components/layout/footer';
|
|
import { SupportedLocale } from 'components/layout/navbar/language-control';
|
|
|
|
import Navbar from 'components/layout/navbar';
|
|
import { getCart } from 'lib/shopify';
|
|
import { cookies } from 'next/headers';
|
|
import { Suspense } from 'react';
|
|
|
|
export const runtime = 'edge';
|
|
const { SITE_NAME } = process.env;
|
|
|
|
export const metadata = {
|
|
title: SITE_NAME,
|
|
description: SITE_NAME,
|
|
openGraph: {
|
|
type: 'website'
|
|
}
|
|
};
|
|
|
|
export default async function ProductPage({
|
|
params: { locale }
|
|
}: {
|
|
params: { locale?: SupportedLocale };
|
|
}) {
|
|
const cartId = cookies().get('cartId')?.value;
|
|
let cart;
|
|
|
|
if (cartId) {
|
|
cart = await getCart(cartId);
|
|
}
|
|
|
|
return (
|
|
<div>
|
|
<Navbar cart={cart} locale={locale} compact />
|
|
<div className="py-24 md:py-48">
|
|
<ThreeItemGrid lang={locale} />
|
|
</div>
|
|
|
|
<Suspense>
|
|
<Footer cart={cart} />
|
|
</Suspense>
|
|
</div>
|
|
);
|
|
}
|