import { Inter } from '@next/font/google' import styles from '../styles/Home.module.css' const inter = Inter({ subsets: ['latin'] }) const Button = ({ title, subtitle, link }: { title: string, subtitle: string, link: string }) => { return ( <>

{title} ->

{subtitle}

) } export default Button