diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6724613..966f8db 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Mulish } from "next/font/google"; +import { Open_Sans } from "next/font/google"; @@ -15,7 +16,15 @@ export const metadata: Metadata = { description: 'Professional mobile interior detailing services. We bring our expertise to your door, keeping your car interior pristine, fresh, and clean.', }; -const mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"] }); + +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); +const openSans = Open_Sans({ + variable: "--font-open-sans", + subsets: ["latin"], +}); export default function RootLayout({ children, @@ -25,7 +34,7 @@ export default function RootLayout({ return ( - + {children}