From 330a1e44ce70163ce5192d9c507fb4e1d154be2b Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 00:41:07 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4805b72..13a69e2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,8 +1,14 @@ import type { Metadata } from "next"; +import { Inter } from "next/font/google"; +import "./styles/variables.css"; import "./globals.css"; +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); + export const metadata: Metadata = { - title: "Vaquer - Strategic Web Design & Marketing", description: "Premium web design and marketing agency delivering strategic digital solutions that drive measurable business growth."}; + title: "Vaquer - Strategic Web Design & Marketing", description: "Premium web design and marketing agency delivering strategic digital experiences that drive measurable business growth."}; export default function RootLayout({ children, @@ -11,7 +17,9 @@ export default function RootLayout({ }) { return ( - {children} + + {children} +