import { ArrowRightIcon } from 'lucide-react' import Link from 'next/link' import { Card, CardDescription, CardHeader, CardTitle } from '@workspace/ui/components/card' export default function Home() { return (

Welcome to {{projectName}}

Your project has been successfully created with effex!

Tech Stack

) } function InternalLinkCard({ title, description, href, }: { title: string description: string href: string }) { return ( {title} {description} ) } function LinkCard({ title, description, href, }: { title: string description: string href: string }) { return ( {title} {description} ) }