diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 13a0f5d..1727691 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,22 +6,10 @@ import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; +import { Open_Sans } from "next/font/google"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); -const montserrat = Montserrat({ - variable: "--font-montserrat", - subsets: ["latin"], -}); export const metadata: Metadata = { title: "Küffer Consulting | B2B Sales Growth", @@ -49,6 +37,15 @@ export const metadata: Metadata = { }, }; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); +const openSans = Open_Sans({ + variable: "--font-open-sans", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -57,9 +54,7 @@ export default function RootLayout({ return ( - + {children}