From df9261b089790373adab7cf047a5672e5adf6bbb Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 17:02:47 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 927597d..03c8eaa 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,13 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Figtree } 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 figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], -}); - export const metadata: Metadata = { title: "AI Automation for Norwegian SMBs | Grow Revenue, Reduce Work", description: "Automate leads, follow-ups & operations. Norwegian agencies, clinics & local businesses grow faster with AI. Book your free 15-minute audit today.", keywords: "AI automation, lead automation, Norwegian SMB, business automation, CRM setup, chatbot, workflow automation", openGraph: { title: "AI Growth - Automate Your Norwegian Business", description: "Transform your business with AI automation. More revenue. Less work. Free audit.", type: "website", siteName: "AI Growth"}, @@ -30,11 +19,9 @@ export default function RootLayout({ children: React.ReactNode; }>) { return ( - + - + {children}