From ba60f694f264af6480c5b509b87d75e4f397723a Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 20:53:38 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f013f4d..e297fd8 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 { Public_Sans } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; @@ -14,8 +15,11 @@ export const metadata: Metadata = { description: 'Luxury handcrafted cakes by Pastry Chef Taidde. Custom designs, same-day orders available. Celebrating every special moment with passion and precision in San Antonio.', }; -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], + +const interTight = Inter_Tight({ + variable: "--font-inter-tight", + subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export default function RootLayout({ @@ -26,7 +30,7 @@ export default function RootLayout({ return ( - + {children}