import { Text } from '@react-email/components'; import React from 'react'; import { z } from 'zod'; import { Layout } from '../components/layout'; import { List } from '../components/list'; export const zOnboardingWhatToTrack = z.object({ firstName: z.string().optional(), }); export type Props = z.infer; export default OnboardingWhatToTrack; export function OnboardingWhatToTrack({ firstName, unsubscribeUrl, }: Props & { unsubscribeUrl?: string }) { return ( Hi{firstName ? ` ${firstName}` : ''}, Tracking can be overwhelming at first, and that's why its important to focus on what's matters. For most products, that's something like: Start small and incrementally add more events as you go is usually the best approach. If you're not sure whether something's worth tracking, or have any questions, just reply here. Best regards,
Carl
); }