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}