SuccessUpgradeEmail.tsx 1.1 KB

12345678910111213141516171819202122232425262728
  1. import { Section, Text } from "@react-email/components";
  2. import { SiteConfig } from "@/shared/config/site-config";
  3. import { BaseEmailLayout } from "./utils/BaseEmailLayout";
  4. export default function SuccessUpgradeEmail() {
  5. return (
  6. <BaseEmailLayout previewText={"You have successfully upgraded your account"}>
  7. <Section className="my-6">
  8. <Text className="text-lg leading-6">Hello,</Text>
  9. <Text className="text-lg leading-6">
  10. Great news! Your payment was successful, and you now have full access to all our premium link in bio features. Get ready to create
  11. your perfect link page!
  12. </Text>
  13. <Text className="text-lg leading-6">
  14. If you have any questions about customizing your link page or need assistance with any features, feel free to reach out to us.
  15. We&apos;re here to help you make the most of your link in bio experience.
  16. </Text>
  17. <Text className="text-lg leading-6">Happy linking,</Text>
  18. </Section>
  19. <Text className="text-lg leading-6">
  20. Best,
  21. <br />- {SiteConfig.maker.name} from {SiteConfig.title}
  22. </Text>
  23. </BaseEmailLayout>
  24. );
  25. }