Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 20 additions & 16 deletions emails/layouts/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,43 +31,46 @@ export const Footer = ({ className = "" }: FooterProps) => {
return (
<Section className={className}>
<Hr className="mx-0 mb-8 mt-0 block border border-brand-light-gray border-solid" />
<Text className="text-sm m-0 font-light mb-7">
Datum unlocks cloud superpowers, without getting in the way. Find out more about Datum at <Link href={brandConfig.url} target="_blank" className="text-brand-canyon-clay underline">datum.net</Link>
</Text>
<Row className="my-6 table-cell h-[44px] w-[56px]">
<Column className="pr-2">
<Column className="pr-3.5">
<Link href={brandConfig.url} target="_blank">
<Img
src="https://www.datum.net/download/eng/social-dt.png"
height="18"
width="18"
height="22"
width="22"
alt="Datum"
/>
</Link>
</Column>
<Column className="pr-2">
<Column className="pr-3.5">
<Link href={brandConfig.discordUrl} target="_blank">
<Img
src="https://www.datum.net/download/eng/social-dc.png"
height="18"
width="18"
height="22"
width="22"
alt="Discord"
/>
</Link>
</Column>
<Column className="pr-2">
<Column className="pr-3.5">
<Link href={brandConfig.githubUrl} target="_blank">
<Img
src="https://www.datum.net/download/eng/social-gh.png"
height="18"
width="18"
height="22"
width="22"
alt="GitHub"
/>
</Link>
</Column>
<Column className="pr-2">
<Column className="pr-3.5">
<Link href={brandConfig.youtubeUrl} target="_blank">
<Img
src="https://www.datum.net/download/eng/social-yt.png"
height="18"
width="18"
height="22"
width="22"
alt="YouTube"
/>
</Link>
Expand All @@ -76,17 +79,18 @@ export const Footer = ({ className = "" }: FooterProps) => {
<Link href={brandConfig.linkedinUrl} target="_blank">
<Img
src="https://www.datum.net/download/eng/social-li.png"
height="18"
width="18"
height="22"
width="22"
alt="LinkedIn"
/>
</Link>
</Column>
</Row>
<Text className="text-sm m-0 font-light">
Datum Technology Inc. <br />
120 Broadway, 26th Floor <br />
New York, NY 10271
29 Broadway <br />
New York City<br />
NY 10006
</Text>
</Section>
);
Expand Down
20 changes: 11 additions & 9 deletions emails/user-invitation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,21 +32,21 @@ export const UserInvitation = ({
<Text className="text-sm m-0 font-light">
Please click the button to set up your account and get started. If
you need help, just reply to this email or visit us on{" "}
<Link href={brandConfig.discordUrl} target="_blank">
<Link href={brandConfig.discordUrl} target="_blank" className="text-brand-canyon-clay underline">
Discord
</Link>
.
</Text>
{UserInvitationName && (
<CustomButton
href={`https://cloud.datum.net/invitation/${UserInvitationName}/accept`}
className="my-6 block font-semibold"
className="my-6 block font-medium"
>
Accept invitation
</CustomButton>
)}
<Text className="text-sm m-0 font-light">
Or paste the following URL into your browser:{" "}
Or you can copy and paste the following URL into your browser:{" "}
<Link
href={`https://cloud.datum.net/invitation/${UserInvitationName}/accept`}
className="text-brand-canyon-clay"
Expand All @@ -58,14 +58,16 @@ export const UserInvitation = ({

<Row>
<Hr className="mx-0 my-8 block border border-brand-light-gray border-solid" />
<Heading as="h3" className="mt-0 font-medium mb-4">
Why Datum?
<Heading as="h3" className="mt-0 font-medium mb-2.5 text-lg">
We're here to help
</Heading>
<Text className="text-sm m-0 font-light">
Datum is a venture-backed startup based in New York City. Our
mission is to help 1k new clouds thrive in the age of AI by
unlocking internet superpowers for every builder.
<Text className="text-base font-light m-0 mb-2.5">
If you have any questions reach out and we'll do our best to help
</Text>

<Link href={`mailto:${brandConfig.supportEmail}`} className="text-base font-medium underline text-brand-canyon-clay">
{brandConfig.supportEmail}
</Link>
</Row>
</Section>
</MainLayout>
Expand Down