40 lines
1001 B
JavaScript
40 lines
1001 B
JavaScript
import '../styles/globals.css'
|
|
import Head from 'next/head'
|
|
|
|
function MyApp({ Component, pageProps }) {
|
|
return <>
|
|
<Head>
|
|
<meta name="description" content="Generated by create next app" />
|
|
<meta charSet="UTF-8" />
|
|
|
|
<title>nirvana</title>
|
|
|
|
<link rel="icon" href="/icon.png" />
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link
|
|
rel="preconnect"
|
|
href="https://fonts.gstatic.com"
|
|
crossOrigin="true"
|
|
/>
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Satisfy&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700" />
|
|
</Head>
|
|
|
|
<main>
|
|
<Component {...pageProps} />
|
|
</main>
|
|
</>
|
|
}
|
|
|
|
export default MyApp
|