diff --git a/apps/demo/emails/hiring/meet-adam.tsx b/apps/demo/emails/hiring/meet-adam.tsx
new file mode 100644
index 0000000000..66fde7f778
--- /dev/null
+++ b/apps/demo/emails/hiring/meet-adam.tsx
@@ -0,0 +1,213 @@
+import {
+ Body,
+ Button,
+ Container,
+ Head,
+ Heading,
+ Hr,
+ Html,
+ Markdown,
+ Preview,
+ Section,
+ Text,
+} from '@react-email/components';
+import type * as React from 'react';
+
+type HiringManagerIntroProps = {
+ roleTitle?: string;
+ companyName?: string;
+ applicantName?: string;
+ contactEmail?: string;
+ highlights?: string[];
+ portfolioUrl?: string;
+};
+
+export default function HiringManagerIntro({
+ roleTitle = 'Open Source Engineer',
+ companyName = 'Resend',
+ applicantName = 'Adam Bowker',
+ contactEmail = 'adambowker98@gmail.com',
+ highlights = [
+ 'Shipped an AI testing platform at Amazon to replace flaky acceptance tests',
+ 'Turned the pain of cooking from looping TikToks into [Forkfile](https://www.getforkfile.com), then expanded into [CreatorCookbooks](https://www.creatorcookbooks.com) to help creators monetize recipes',
+ 'Built an obituary scraping platform @ [Tukios](https://www.tukios.com) to streamline funeral home website onboarding & growth-hack with demo sites',
+ 'Worked with a [PR company](https://www.heller-pr.com) to design tech solutions ranging from a VR voting campaign to a practice management platform for an ADHD clinic',
+ 'Taught hundreds of kids to code, then [sold the company](https://www.betabox.com/news/betabox-acquires-imagicode-to-expand-computer-science-offerings) during COVID (bittersweet)',
+ '**Bonus**: Produced a middle-school [infomercial about lysosomes](https://www.youtube.com/watch?v=PS3Ao6j3Wuo) that somehow still lives in family lore',
+ ],
+ portfolioUrl = 'https://adbo.io',
+}: HiringManagerIntroProps) {
+ const preview = `Five quick reasons (and a bonus) why I'm a fit for the ${roleTitle} role at ${companyName}`;
+ return (
+
+