import Link from 'next/link'; export default function HomePage() { const sections = [ { title: 'Dashboard', description: 'Get an overview of your link performance with key metrics and trends.', href: '/dashboard', icon: ( ), }, { title: 'Events', description: 'Track and analyze all events including clicks, conversions, and more.', href: '/events', icon: ( ), }, { title: 'Geographic', description: 'See where your visitors are coming from with detailed location data.', href: '/analytics/geo', icon: ( ), }, { title: 'Devices', description: 'Understand what devices, browsers, and operating systems your visitors use.', href: '/analytics/devices', icon: ( ), }, { title: 'Conversions', description: 'Track conversion rates and analyze the performance of your links.', href: '/analytics/conversions', icon: ( ), }, ]; return (

Welcome to ShortURL Analytics

Get detailed insights into your link performance and visitor behavior

{sections.map((section) => (
{section.icon}

{section.title}

{section.description}

))}
); }