From 61b29ab0239ebe244769ae1c554cae12f5c322e9 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 3 Jun 2026 18:17:20 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5855bed..917214d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,23 +6,23 @@ import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; +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"], -}); export const metadata: Metadata = { title: 'JJS Studios | Bespoke Web Design & Digital Experiences', description: 'Transform your vision into a captivating online experience with JJS Studios. We specialize in bespoke web design, development, and digital strategy.', }; +const manrope = Manrope({ + variable: "--font-manrope", subsets: ["latin"], +}); +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -31,9 +31,7 @@ export default function RootLayout({ return ( - + {children}