"use client";
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 { Link } from "@react-email/link";
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;
date: string;
};
export function WelcomeEmail() {
return (
Welcome to Unkey!Hi there!
My name is James. I am one of the co-founders of Unkey. We believe that Unkey's API
management platform makes it easy to secure, manage and scale your API.
We know integrating a new system is overwhelming, so here are some resources to get
you started:{" "}
{" "}
Unkey Quickstart Guide
Why is Unkey secure?
{" "}
Unkey Community Discord
We love feedback, so feel free to respond to this email as you start using Unkey. We
read and reply to every single one.
Cheers,
James
);
}
export default WelcomeEmail;