making it work but it's sort of a mess

This commit is contained in:
Arjun Patel
2022-01-10 22:51:06 -08:00
parent 91a01f7b7c
commit 81a7358452
1583 changed files with 26 additions and 4 deletions
+10 -4
View File
@@ -1,5 +1,6 @@
import '../styles/globals.css'
import Head from 'next/head'
import Script from 'next/script'
function MyApp({ Component, pageProps }) {
return <>
@@ -28,12 +29,17 @@ function MyApp({ Component, pageProps }) {
/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700" />
<link href="assets/plugins/global/plugins.bundle.css" rel="stylesheet" type="text/css" />
<link href="assets/css/style.bundle.css" rel="stylesheet" type="text/css" />
<link href="/assets/plugins/global/plugins.bundle.css" rel="stylesheet" type="text/css" />
<link href="/assets/css/style.bundle.css" rel="stylesheet" type="text/css" />
</Head>
<Component {...pageProps} />
<body>
<Component {...pageProps} />
<Script type="text/javascript" defer src="/assets/plugins/global/plugins.bundle.js"></Script>
<Script type="text/javascript" defer src="/assets/js/scripts.bundle.js"></Script>
</body>
</>
}