From fc82edb596c3af155938ccde02b46afaf93289c6 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 21:32:39 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 67 +++++----------------------------------------- 1 file changed, 6 insertions(+), 61 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 10ed71f..a03f589 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,74 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } 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 manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], -}); +const inter = Inter({ variable: "--font-inter", subsets: ["latin"] }); export const metadata: Metadata = { - title: "Housing Hues | Scale Your Local Business Into a National Brand", - description: "Transform your local business into a national brand with Housing Hues. Growth strategy, marketing systems, and operational scaling for 150+ successful businesses.", - keywords: "business growth agency, local business scaling, growth strategy, franchise consulting, business systems, marketing agency", - metadataBase: new URL("https://housinghues.com"), - alternates: { - canonical: "https://housinghues.com", - }, - openGraph: { - title: "Housing Hues | Scale Your Local Business Into a National Brand", - description: "Transform your local business into a national brand. Proven growth strategy and scaling systems.", - url: "https://housinghues.com", - siteName: "Housing Hues", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/medium-shot-colleagues-with-laptop_23-2149009003.jpg", - alt: "Housing Hues Growth Agency", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Housing Hues | Scale Your Local Business Into a National Brand", - description: "Transform your local business into a national brand with proven growth strategy and systems.", - images: ["http://img.b2bpic.net/free-photo/medium-shot-colleagues-with-laptop_23-2149009003.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Housing Hues | Local Business Growth Specialists", description: "Transform your local business into a national brand with Housing Hues. Proven growth strategy, marketing systems, and operational scaling for 150+ successful businesses."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}