diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0403f76..6851d4f 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 { Manrope } 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 dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], -}); export const metadata: Metadata = { title: "W&M Services | Professional Landscaping in Washington DC", @@ -56,6 +44,11 @@ export const metadata: Metadata = { }, }; +const manrope = Manrope({ + variable: "--font-manrope", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -64,9 +57,7 @@ export default function RootLayout({ return ( - + {children}