diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 09a805e..5f2ce11 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,23 +6,24 @@ import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; +import { Open_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: 'AutoParts Pro - High-Performance Car Parts & Accessories', description: 'Your trusted source for premium car parts. Explore engines, brakes, suspension, and more. Enhance your vehicle\'s performance and style with AutoParts Pro.', }; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); +const openSans = Open_Sans({ + variable: "--font-open-sans", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -31,9 +32,7 @@ export default function RootLayout({ return ( - + {children}