import {
Body,
Container,
Head,
Heading,
Html,
Img,
Link,
Preview,
Text
} from '@react-email/components'
import * as React from 'react'
interface ResetPasswordProps {
token?: string
}
const gradientStyle = {
background: 'linear-gradient(to right, #6366F1, #A855F7)', // from-indigo-500 to-purple-500
WebkitBackgroundClip: 'text', // Clips the background to the text (for Safari)
WebkitTextFillColor: 'transparent', // Makes the text color transparent (for Safari)
backgroundClip: 'text', // Clips the background to the text (standard)
color: 'transparent' // Makes the text color transparent
}
export const ResetPassword = ({ token }: ResetPasswordProps) => (