23 lines
574 B
TypeScript
23 lines
574 B
TypeScript
import "../styles/globals.css";
|
|
|
|
import type { AppProps } from "next/app";
|
|
import Head from "next/head";
|
|
|
|
function MyApp({ Component, pageProps }: AppProps) {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;600&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
</Head>
|
|
<Component {...pageProps} />
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default MyApp;
|