import { Avatar } from '../components/Avatar' import { Button } from '../components/Button' import { SocialLinks } from '../components/SocialLinks' export default function Home() { const links = [ { label: 'Home', href: '#' }, { label: 'About', href: '/about' }, { label: 'Contact', href: '/contact' } ] const socialLinks = [ { label: 'Email', href: '1' }, { label: 'GitHub', href: '2' }, { label: 'LinkedIn', href: '3' }, { label: 'Dev', href: '4' }, { label: 'Instagram', href: '5' }, { label: 'WhatsApp', href: '6' } ] return (
{links.map(link => ( ))}
) }