'use client' import Link from 'next/link' import { Button } from '@/components/ui/button' interface HeroProps { title?: string description?: string primaryCTA?: { text: string href: string } secondaryCTA?: { text: string href: string } } export default function Hero({ title = 'Host Your Portfolio', description = 'Deploy and manage your portfolio websites with custom domains. Simple, fast, and professional hosting for creatives and developers.', primaryCTA = { text: 'Get Started', href: '/register', }, secondaryCTA = { text: 'View Example', href: '#', }, }: HeroProps) { return (

{title}

{description}

{secondaryCTA.text && ( )}
{/* Optional: Decorative elements */}

Trusted by portfolio creators and developers worldwide

) }