import { Button, Link, Text } from '@react-email/components'; import React from 'react'; import { z } from 'zod'; import { Layout } from '../components/layout'; export const zEmailResetPassword = z.object({ url: z.string(), }); export type Props = z.infer; export default EmailResetPassword; export function EmailResetPassword({ url = 'https://openpanel.dev' }: Props) { return ( You have requested to reset your password. Follow the link below to reset your password: Reset password link: {url} Have you not requested this? Please ignore this email and contact support if you believe this was a mistake. ); }