"use client";
import { Button } from "@react-email/button";
import { Container } from "@react-email/container";
import { Head } from "@react-email/head";
import { Heading } from "@react-email/heading";
import { Hr } from "@react-email/hr";
import { Html } from "@react-email/html";
import { Section } from "@react-email/section";
import { Tailwind } from "@react-email/tailwind";
import { Text } from "@react-email/text";
import React from "react";
export type Props = {
username: string;
};
export function SubscriptionEnded({ username = "username" }: Props) {
return (
Your Unkey subscription has ended.
Hey {username},
We're reaching out to let you know that your trial period has come to an end for Unkey
Pro. We have downgraded the workspace to free, which means you lose access to the
workspace, but we will retain all your team and key data.
If you want to continue with Unkey Pro, click the button below, and you can add your
credit card.
If you have any feedback, please reply to this email. We would love to hear all about
it.
Cheers,
Andreas
);
}
export default SubscriptionEnded;