import Header from '@/components/shopify/header'; import Footer from '@/components/shopify/footer'; import AccountForm from '@/components/shopify/account-form'; export const metadata = { title: 'Set a new password — Shop' }; // Shopify's emailed reset link is /account/reset/{id}/{token}. export default async function Page({ params, }: { params: Promise<{ id: string; token: string }>; }) { const { id, token } = await params; return ( <>