"use client"; import { ThemeColor } from "./types"; export function EmailReactEmail({ themeColor }: { themeColor?: ThemeColor }) { return (
Acme

Welcome to Acme! 🎉

Hi Alice, thanks for signing up. Your account is ready and you can start building right away.

Your account details

{["Plan: Starter", "Workspace: alice-workspace", "Status: Active"].map(d => (

{d}

))}

If you have any questions, reply to this email or visit our help center. We're here to help.

Acme Inc · 123 Main St · San Francisco CA · Unsubscribe

); }