diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 18e0ff5..c48bd69 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,6 +6,8 @@ import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Raleway } from "next/font/google"; +import { Libre_Baskerville } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; @@ -19,9 +21,12 @@ export const metadata: Metadata = { }, }; -const raleway = Raleway({ - variable: "--font-raleway", + + +const interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export default function RootLayout({ @@ -32,7 +37,7 @@ export default function RootLayout({ return ( - + {children}