diff --git a/app/account/activate/[id]/[token]/page.tsx b/app/account/activate/[id]/[token]/page.tsx new file mode 100644 index 0000000..199e1ef --- /dev/null +++ b/app/account/activate/[id]/[token]/page.tsx @@ -0,0 +1,39 @@ +import Header from '@/components/shopify/header'; +import Footer from '@/components/shopify/footer'; +import AccountForm from '@/components/shopify/account-form'; + +export const metadata = { title: 'Activate your account — Shop' }; + +// Shopify's emailed activation link is /account/activate/{id}/{token}. +export default async function Page({ + params, +}: { + params: Promise<{ id: string; token: string }>; +}) { + const { id, token } = await params; + + return ( + <> +
+
+ +
+