diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6dd7314..1d09ffa 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,17 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Lato } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); export const metadata: Metadata = { - title: "AI Automation Systems for Sales & Operations | Northbridge Systems", description: "Custom AI automation that qualifies leads, generates proposals, and scales operations. Trusted by law firms and professional service businesses.", keywords: "AI automation, lead qualification, sales automation, AI agents, business automation, AI implementation", metadataBase: new URL("https://northbridge-systems.com"), - alternates: { - canonical: "https://northbridge-systems.com"}, - openGraph: { - title: "AI Automation Systems That Transform Your Sales Process", description: "Northbridge Systems builds intelligent AI automation systems that research, qualify, and convert leads automatically.", url: "https://northbridge-systems.com", siteName: "Northbridge Systems", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXips3cBPWhQf6fn3Zku81DMLE/a-sophisticated-ai-automation-dashboard--1772745571266-587c95e9.png", alt: "AI Automation Dashboard"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "AI Automation Systems for Sales & Operations", description: "Custom AI automation that qualifies leads and scales operations for law firms and professional service businesses.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXips3cBPWhQf6fn3Zku81DMLE/a-sophisticated-ai-automation-dashboard--1772745571266-587c95e9.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Northbridge Systems | AI Automation Platform", description: "Intelligent AI automation that researches, qualifies, and converts leads automatically."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}