From da60d1ec181c207bcd7ca3a80a1269c472fa35d4 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 22:44:39 +0000 Subject: [PATCH] Update theme fonts --- src/app/layout.tsx | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 10d4052..fc309a4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -5,6 +5,7 @@ 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"; @@ -13,8 +14,14 @@ export const metadata: Metadata = { description: 'Premium cigars, kratom, vapes & glass in Lake County. 10 years of expert service, best prices, huge selection. Visit today.', }; + const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], + variable: "--font-inter", + subsets: ["latin"], +}); +const openSans = Open_Sans({ + variable: "--font-open-sans", + subsets: ["latin"], }); export default function RootLayout({ @@ -25,7 +32,7 @@ export default function RootLayout({ return ( - + {children}