1
1
import type { Metadata } from "next" ;
2
- import { Figtree , Instrument_Serif , Manrope } from "next/font/google" ;
2
+ import { Instrument_Serif , Manrope } from "next/font/google" ;
3
3
import "./globals.css" ;
4
4
import { Appbar } from "@/components/Appbar" ;
5
5
import { Providers } from "@/components/providers/Providers" ;
6
- import { Footer } from "@/components/Footer " ;
6
+ import Footer from "@/components/landing/footer " ;
7
7
8
- const geistSans = localFont ( {
9
- src : "./fonts/GeistVF.woff" ,
10
- variable : "--font-geist-sans" ,
8
+ const manrope = Manrope ( {
9
+ subsets : [ "latin" ] ,
10
+ variable : "--font-manrope" ,
11
+ weight : [ "300" , "400" , "500" , "600" , "700" ] ,
11
12
} ) ;
12
13
13
- const geistMono = localFont ( {
14
- src : "./fonts/GeistMonoVF.woff" ,
15
- variable : "--font-geist-mono" ,
14
+ const instrumental_serif = Instrument_Serif ( {
15
+ subsets : [ "latin" ] ,
16
+ variable : "--font-instrumental-serif" ,
17
+ weight : [ "400" ] ,
16
18
} ) ;
17
19
18
20
export const metadata : Metadata = {
@@ -36,7 +38,7 @@ export default function RootLayout({
36
38
/>
37
39
</ head >
38
40
< body
39
- className = { `${ geistSans . variable } ${ geistMono . variable } min-h-screen bg-background font-sans antialiased` }
41
+ className = { `${ manrope . variable } ${ instrumental_serif . variable } min-h-screen bg-background font-sans antialiased` }
40
42
>
41
43
< Providers >
42
44
< div className = "relative flex min-h-screen flex-col" >
0 commit comments