diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9e8caf5..9e72c6c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,6 +6,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 { DM_Sans } from "next/font/google"; @@ -14,8 +15,14 @@ export const metadata: Metadata = { description: 'Professional car wash, self-service bays, and dog grooming at Coomera Square, Gold Coast. 24/7 automatic and self-service. No appointments needed. Affordable & spotless results.', }; -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], + +const dmSans = DM_Sans({ + variable: "--font-dm-sans", + subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], }); export default function RootLayout({ @@ -26,7 +33,7 @@ export default function RootLayout({ return ( - + {children}