import { Trans } from '@lingui/react/macro'; import { XCircle } from 'lucide-react'; import { Link } from 'react-router'; import { Button } from '@documenso/ui/primitives/button'; import { appMetaTags } from '~/utils/meta'; export function meta() { return appMetaTags('Verify Email'); } export default function EmailVerificationWithoutTokenPage() { return (

Uh oh! Looks like you're missing a token

It seems that there is no token provided, if you are trying to verify your email please follow the link in your email.

); }