Template
The root layout exported no metadata, so routes without their own export rendered no title at all, and no route had a description. Add a root metadata block with a title template, Open Graph and Twitter defaults, and fill in the routes that were missing tags. - config/site.ts: description and env-driven absolute url for metadataBase - home, /collections and /shop/collections: titles and descriptions - products/[handle] and collections/[handle]: generateMetadata off the existing catalog fetchers, with canonical and OG image - existing titles: drop the hand-written " — Shop" suffix now that the root template appends it Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_011x5jT4fJJCnqPx3umEvXRk
44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
import AccountForm, { AccountFormLink } from '@/components/shopify/account-form';
|
|
|
|
export const metadata = { title: 'Create account' };
|
|
|
|
export default function Page() {
|
|
return (
|
|
<main className="max-w-screen-2xl mx-auto w-full px-8 py-16">
|
|
<AccountForm
|
|
title="Create account"
|
|
fields={[
|
|
{
|
|
name: 'firstName',
|
|
label: 'First name',
|
|
autoComplete: 'given-name',
|
|
required: false,
|
|
},
|
|
{
|
|
name: 'lastName',
|
|
label: 'Last name',
|
|
autoComplete: 'family-name',
|
|
required: false,
|
|
},
|
|
{ name: 'email', label: 'Email', type: 'email', autoComplete: 'email' },
|
|
{
|
|
name: 'password',
|
|
label: 'Password',
|
|
type: 'password',
|
|
autoComplete: 'new-password',
|
|
},
|
|
]}
|
|
submitLabel="Create account"
|
|
endpoint="/api/account/register"
|
|
redirectTo="/account"
|
|
footer={
|
|
<span>
|
|
Already have an account?{' '}
|
|
<AccountFormLink href="/account/login">Sign in</AccountFormLink>
|
|
</span>
|
|
}
|
|
/>
|
|
</main>
|
|
);
|
|
}
|