Skip to content

Commit cca36af

Browse files
committed
added link to cal for team
1 parent d28915f commit cca36af

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

apps/sim/components/emails/auth/welcome-email.tsx

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,22 @@ export function WelcomeEmail({ userName }: WelcomeEmailProps) {
2222
workflows in minutes.
2323
</Text>
2424

25-
<Link href={`${baseUrl}/w`} style={{ textDecoration: 'none' }}>
25+
<Link href={`${baseUrl}/login`} style={{ textDecoration: 'none' }}>
2626
<Text style={baseStyles.button}>Get Started</Text>
2727
</Link>
2828

2929
<Text style={baseStyles.paragraph}>
3030
If you have any questions or feedback, just reply to this email. I read every message!
3131
</Text>
3232

33+
<Text style={baseStyles.paragraph}>
34+
Want to chat?{' '}
35+
<Link href={`${baseUrl}/team`} style={baseStyles.link}>
36+
Schedule a call
37+
</Link>{' '}
38+
with our team.
39+
</Text>
40+
3341
<Text style={baseStyles.paragraph}>- Emir, co-founder of {brand.name}</Text>
3442

3543
{/* Divider */}

apps/sim/components/emails/billing/plan-welcome-email.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export function PlanWelcomeEmail({ planName, userName, loginLink }: PlanWelcomeE
3333

3434
<Text style={baseStyles.paragraph}>
3535
Want help getting started?{' '}
36-
<Link href='https://cal.com/emirkarabeg/sim-team' style={baseStyles.link}>
36+
<Link href={`${baseUrl}/team`} style={baseStyles.link}>
3737
Schedule a call
3838
</Link>{' '}
3939
with our team.

apps/sim/next.config.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,11 @@ const nextConfig: NextConfig = {
269269
source: '/github',
270270
destination: 'https://github.com/simstudioai/sim',
271271
permanent: false,
272+
},
273+
{
274+
source: '/team',
275+
destination: 'https://cal.com/emirkarabeg/sim-team',
276+
permanent: false,
272277
}
273278
)
274279

0 commit comments

Comments
 (0)