import { Body, Button, Container, Column, Head, Heading, Hr, Html, Img, Link, Row, Section, Text, Tailwind, } from "@react-email/components"; import * as React from "react"; const baseUrl = ""; export const Email = ({ userFirstName, businessName, meetingUrl, meetingDate, meetingTime, duration }) => { return (

Schedule.Me

Hello {userFirstName}, You have scheduled meeting with {businessName}. Please find your meeting details below this email. Thank you for scheduling meeting with us.

Date: {meetingDate}

Time: {meetingTime}

Time duration: {duration}

or copy and paste this URL into your browser:{meetingUrl}
This notification was intended for {userFirstName}. If you were not scheduling this meeting, you can ignore this email.
); }; export default Email;