From 27f215265e52a79f2c1436a83bf3ce30e8c4bcd7 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 21:28:16 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1d09ffa..306a8e3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,6 +1,12 @@ import type { Metadata } from "next"; +import { Inter_Tight } from "next/font/google"; import "./globals.css"; +const interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +}); + export const metadata: Metadata = { title: "Northbridge Systems | AI Automation Platform", description: "Intelligent AI automation that researches, qualifies, and converts leads automatically."}; @@ -11,7 +17,7 @@ export default function RootLayout({ }) { return ( - {children} + {children}