56 lines
1.7 KiB
TypeScript
56 lines
1.7 KiB
TypeScript
import * as React from 'react';
|
|
import type { Metadata } from 'next';
|
|
import RouterLink from 'next/link';
|
|
import Alert from '@mui/material/Alert';
|
|
import Box from '@mui/material/Box';
|
|
import Stack from '@mui/material/Stack';
|
|
import Typography from '@mui/material/Typography';
|
|
|
|
import { config } from '@/config';
|
|
import { paths } from '@/paths';
|
|
import { GuestGuard } from '@/components/auth/guest-guard';
|
|
import { SplitLayout } from '@/components/auth/split-layout';
|
|
import { SignUpResendButton } from '@/components/auth/supabase/sign-up-resend-button';
|
|
import { DynamicLogo } from '@/components/core/logo';
|
|
|
|
export const metadata: Metadata = { title: `Sign up confirm | Supabase | Auth | ${config.site.name}` };
|
|
|
|
interface PageProps {
|
|
searchParams: { email?: string };
|
|
}
|
|
|
|
export default function Page({ searchParams }: PageProps): React.JSX.Element {
|
|
const { email } = searchParams;
|
|
|
|
if (!email) {
|
|
return (
|
|
<Box sx={{ p: 3 }}>
|
|
<Alert color="error">Email is required</Alert>
|
|
</Box>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<GuestGuard>
|
|
<SplitLayout>
|
|
<Stack spacing={4}>
|
|
<div>
|
|
<Box component={RouterLink} href={paths.home} sx={{ display: 'inline-block', fontSize: 0 }}>
|
|
<DynamicLogo colorDark="light" colorLight="dark" height={32} width={122} />
|
|
</Box>
|
|
</div>
|
|
<Typography variant="h5">Confirm your email</Typography>
|
|
<Typography>
|
|
We've sent a verification email to{' '}
|
|
<Typography component="span" variant="subtitle1">
|
|
"{email}"
|
|
</Typography>
|
|
.
|
|
</Typography>
|
|
<SignUpResendButton email={email}>Resend</SignUpResendButton>
|
|
</Stack>
|
|
</SplitLayout>
|
|
</GuestGuard>
|
|
);
|
|
}
|