2022-04-24 23:12:11 +02:00
|
|
|
import '../styles/globals.css'
|
|
|
|
import type { AppProps } from 'next/app'
|
2022-04-25 22:51:45 +02:00
|
|
|
import Head from 'next/head'
|
2022-04-24 23:12:11 +02:00
|
|
|
|
|
|
|
function MyApp({ Component, pageProps }: AppProps) {
|
2022-04-25 22:51:45 +02:00
|
|
|
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=Dancing+Script:wght@400;500;600;700&display=swap"
|
|
|
|
rel="stylesheet"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<title>Wishes</title>
|
|
|
|
</Head>
|
|
|
|
<Component {...pageProps} />
|
|
|
|
</>
|
|
|
|
)
|
2022-04-24 23:12:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export default MyApp
|