diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b4c74e6..7f0e423 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,22 +6,12 @@ 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"; +import { Manrope } from "next/font/google"; +import { DM_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 publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], -}); export const metadata: Metadata = { title: "Flying V Construction | Alberta Roofing, Decking & Exterior", @@ -58,6 +48,16 @@ export const metadata: Metadata = { }, }; + +const manrope = Manrope({ + variable: "--font-manrope", + subsets: ["latin"], +}); +const dmSans = DM_Sans({ + variable: "--font-dm-sans", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -66,9 +66,7 @@ export default function RootLayout({ return ( - + {children}