Shinhati2023 commited on
Commit
da474b3
·
verified ·
1 Parent(s): 8602684

Create pages/_app.js

Browse files
Files changed (1) hide show
  1. pages/_app.js +15 -0
pages/_app.js ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import '../styles/globals.css';
2
+ import { Manrope } from 'next/font/google';
3
+
4
+ // Load the font efficiently
5
+ const manrope = Manrope({ subsets: ['latin'] });
6
+
7
+ function MyApp({ Component, pageProps }) {
8
+ return (
9
+ <main className={manrope.className}>
10
+ <Component {...pageProps} />
11
+ </main>
12
+ );
13
+ }
14
+
15
+ export default MyApp;