diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c592566..6db7be2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,20 +6,18 @@ import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; +import { Inter_Tight } 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: 'Professional Landscaping & Garden Design Services | GreenScape', description: 'Transform your outdoor space with GreenScape. We provide expert landscaping, lawn maintenance, and custom garden design to elevate your home\'s curb appeal.' }; +const interTight = Inter_Tight({ + variable: "--font-inter-tight", + subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -28,9 +26,7 @@ export default function RootLayout({ return ( - + {children}