import * as React from "react"; import { Button, Heading, Hr, Link, Section, Text } from "@react-email/components"; import { SiteConfig } from "@/shared/config/site-config"; import { BaseEmailLayout } from "./utils/BaseEmailLayout"; // Import the layout interface ResetPasswordEmailProps { url: string; } const primaryColor = "#2563EB"; // Blue-600 export const ResetPasswordEmail = ({ url }: ResetPasswordEmailProps) => ( 🔒 Reset Your Password
Hello, We received a request to reset the password for your {SiteConfig.title} account. If this was you, click the button below to set a new password:
If you didn't request a password reset, please ignore this email. Your password will remain unchanged.

If the button above doesn't work, you can copy and paste this link into your browser: {url}
{/* Footer is now handled by BaseEmailLayout */}
); export default ResetPasswordEmail; // Keep export consistent