From 0720f25ed57b3da8ca76d4e7191e3a52cac927bf Mon Sep 17 00:00:00 2001 From: Andre Padez Date: Wed, 25 Feb 2026 04:50:38 +0000 Subject: [PATCH] UserIvite --- src/workspaces/emailer/emails/UserInvite.tsx | 30 +++++++++++++------- 1 file changed, 20 insertions(+), 10 deletions(-) diff --git a/src/workspaces/emailer/emails/UserInvite.tsx b/src/workspaces/emailer/emails/UserInvite.tsx index b57a67b8..7e7faa9b 100644 --- a/src/workspaces/emailer/emails/UserInvite.tsx +++ b/src/workspaces/emailer/emails/UserInvite.tsx @@ -1,5 +1,4 @@ -import Layout from './layouts/MainLayout.jsx'; -import { Container } from '@react-email/components'; +import { Body, Html, Head, Container, Img, Tailwind } from '@react-email/components'; import { Text, Button } from '@react-email/components'; type EmailProps = { @@ -9,14 +8,25 @@ type EmailProps = { const Email = ({ invitedBy, url }: EmailProps) => { return ( - - - You're invited to officer.dev - You have been invited by {invitedBy || ''} to join officer.dev. - Click the button below to set up your account. - - - + + + + + + officer.dev + You're invited to officer.dev + You have been invited by {invitedBy || ''} to join officer.dev. + Click the button below to set up your account. + + + + + ); };