wip: Add about page

This commit is contained in:
Sol Irvine
2023-08-20 17:32:05 +09:00
parent bd2906de25
commit 4eb26ba8e7
13 changed files with 301 additions and 1 deletions

View File

@@ -0,0 +1,43 @@
import Footer from 'components/layout/footer';
import { SupportedLocale } from 'components/layout/navbar/language-control';
import Navbar from 'components/layout/navbar';
import { getCart, getPage } from 'lib/shopify';
import { cookies } from 'next/headers';
import { Suspense } from 'react';
import AboutNaraiDetail from './about-narai-detail';
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 Page({ params }: { params: { locale?: SupportedLocale } }) {
const cartId = cookies().get('cartId')?.value;
let cart;
if (cartId) {
cart = await getCart(cartId);
}
const awardsPage = await getPage({ handle: 'awards', language: params?.locale?.toUpperCase() });
return (
<div>
<Navbar cart={cart} locale={params?.locale} compact />
<div className="pt-24 md:pt-48">
<AboutNaraiDetail awards={awardsPage.body} />
</div>
<Suspense>
<Footer cart={cart} />
</Suspense>
</div>
);
}