import { component$ } from '@builder.io/qwik' import { Link } from '@builder.io/qwik-city' import { IconTwitter } from '~/components/icons/IconTwitter' import { IconGithub } from '~/components/icons/IconGithub' import { Netlify } from '../atoms/Netlify' export default component$(() => { const social = [ { label: 'Twitter', icon: IconTwitter, href: 'https://twitter.com/leifermendez', }, { label: 'Github', icon: IconGithub, href: 'https://github.com/codigoencasa/bot-whatsapp', }, ] return ( ) })