|
1 | 1 | import type { Meta, StoryObj } from '@storybook/nextjs-vite' |
2 | 2 | import { ProposalAcceptTemplate } from '@/components/email/ProposalAcceptTemplate' |
3 | 3 | import { ProposalRejectTemplate } from '@/components/email/ProposalRejectTemplate' |
| 4 | +import { ProposalWaitlistTemplate } from '@/components/email/ProposalWaitlistTemplate' |
4 | 5 | import { ContractSigningTemplate } from '@/components/email/ContractSigningTemplate' |
5 | 6 | import { ContractSignedTemplate } from '@/components/email/ContractSignedTemplate' |
6 | 7 | import { ContractReminderTemplate } from '@/components/email/ContractReminderTemplate' |
@@ -186,6 +187,37 @@ export const EmailTemplates: Story = { |
186 | 187 | </EmailPreviewFrame> |
187 | 188 | </section> |
188 | 189 |
|
| 190 | + {/* Live Waitlist Email */} |
| 191 | + <section className="mb-16"> |
| 192 | + <h2 className="font-space-grotesk mb-6 text-2xl font-semibold text-brand-slate-gray dark:text-white"> |
| 193 | + Proposal Waitlisted Email |
| 194 | + </h2> |
| 195 | + <p className="font-inter mb-6 text-gray-600 dark:text-gray-400"> |
| 196 | + Sent when a speaker's proposal is placed on the waitlist as a |
| 197 | + backup. |
| 198 | + </p> |
| 199 | + <EmailPreviewFrame |
| 200 | + from="Cloud Native Days Norway <hello@cloudnativedays.no>" |
| 201 | + to="charlie.davis@example.com" |
| 202 | + subject="Your proposal has been waitlisted" |
| 203 | + time="Just now" |
| 204 | + > |
| 205 | + <ProposalWaitlistTemplate |
| 206 | + speakerName="Charlie Davis" |
| 207 | + proposalTitle="Cloud Native CI/CD Pipelines" |
| 208 | + eventName="Cloud Native Days Norway 2026" |
| 209 | + eventLocation="Oslo, Norway" |
| 210 | + eventDate="June 15-16, 2026" |
| 211 | + eventUrl="https://cloudnativedays.no" |
| 212 | + comment="Your proposal scored highly and we'd love to include it if a slot opens up. We'll notify you as soon as possible!" |
| 213 | + socialLinks={[ |
| 214 | + 'https://twitter.com/cloudnativeno', |
| 215 | + 'https://linkedin.com/company/cloudnativeno', |
| 216 | + ]} |
| 217 | + /> |
| 218 | + </EmailPreviewFrame> |
| 219 | + </section> |
| 220 | + |
189 | 221 | {/* Contract Signing Email */} |
190 | 222 | <section className="mb-16"> |
191 | 223 | <h2 className="font-space-grotesk mb-6 text-2xl font-semibold text-brand-slate-gray dark:text-white"> |
|
0 commit comments