Merge version_3 into main #5

Merged
bender merged 2 commits from version_3 into main 2026-03-05 21:28:21 +00:00
2 changed files with 9 additions and 3 deletions

View File

@@ -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 (
<html lang="en">
<body>{children}
<body className={`${interTight.variable}`}>{children}
<script
dangerouslySetInnerHTML={{
__html: `

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-lato), sans-serif;
font-family: var(--font-inter-tight), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-lato), sans-serif;
font-family: var(--font-inter-tight), sans-serif;
}