import '../styles/globals.css'; import type { AppProps } from 'next/app'; import { Inter } from '@next/font/google'; import classnames from 'classnames'; import Head from 'next/head'; const inter = Inter({ subsets: ['latin'], variable: '--font-inter', }); function MyApp({ Component, pageProps }: AppProps) { return (