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' export default component$(() => { const links = [ { title: 'Product', items: [ { title: 'Features', href: '#' }, { title: 'Security', href: '#' }, ], }, { title: 'Platform', items: [ { title: 'Developer API', href: '#' }, { title: 'Partners', href: '#' }, ], }, { title: 'Support', items: [ { title: 'Docs', href: '#' }, { title: 'Community Forum', href: '#' }, ], }, { title: 'Company', items: [ { title: 'About', href: '#' }, { title: 'Blog', href: '#' }, ], }, ] const social = [ { label: 'Twitter', icon: IconTwitter, href: '#' }, { label: 'Github', icon: IconGithub, href: 'https://github.com/codigoencasa/bot-whatsapp', }, ] return ( ) })