import { Typography } from '../../components/Typography' interface WelcomeCardProps { title: string description: string link: { text: string url: string } } export const WelcomeCard = ({ title, description, link }: WelcomeCardProps) => { return (