wip: Footer complete

This commit is contained in:
Sol Irvine
2023-08-19 14:17:11 +09:00
parent 1285bc3502
commit 3bb6be36ac
17 changed files with 431 additions and 30 deletions

View File

@@ -37,13 +37,13 @@ export default async function Page({ params }: { params: { locale?: SupportedLoc
if (!page) return notFound();
return (
<div className="font-multilingual min-h-screen px-4 text-white">
<div className="font-multilingual mx-auto min-h-screen max-w-screen-2xl px-4 text-white">
<div className="pb-12">
<LogoNamemark className="w-[260px] fill-current md:w-[320px]" />
</div>
<ShopsTitle />
<h2 className="mb-8 text-3xl font-medium">{page.title}</h2>
<Prose className="mb-8" html={page.body as string} />
<Prose className="mx-auto mb-8 max-w-xl" html={page.body as string} />
</div>
);
}