import Link from 'next/link' import Image from 'next/image' // import { Merriweather } from '@next/font/google' // const merriweather = Merriweather({ subsets: ['latin'], weight: ["300", "700"] }) export default function BadgenTitle ({ host }) { return (

badgen logo Badgen

Fast badge generating service
) } const StyleSwitch = ({ host }) => { if (!host) return null return (
{host.includes('https://flat.') ? [ FLAT, CLASSIC ] : [ CLASSIC, FLAT ]}
) }