Spaces:
Running
Running
File size: 342 Bytes
21d7fc3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import '@/styles/globals.css';
import { Inter } from 'next/font/google';
const inter = Inter({
subsets: ['latin'],
display: 'swap',
variable: '--font-inter',
});
export default function App({ Component, pageProps }) {
return (
<div className={`${inter.variable} font-sans`}>
<Component {...pageProps} />
</div>
);
}
|