From cc75f4bdf7160d183f8e18f5318a0d55ba608405 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 19:22:56 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1416 +------------------------------------------- 1 file changed, 14 insertions(+), 1402 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 72ebaf7..a877737 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1421 +1,34 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } 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"], -}); +import { Tag } from "@/components/tag/Tag"; +import { ServiceWrapper } from "@/providers/service-wrapper/ServiceWrapper"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Bravima Media - Renovation Contractor Marketing | Lead Generation", description: "Bravima helps renovation contractors attract qualified leads and grow revenue. Proven marketing strategies for kitchens, bathrooms, and general contracting.", keywords: "renovation marketing, contractor leads, home improvement lead generation, bathroom remodeling marketing, kitchen remodel leads", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "More Clients, More Projects, More Revenue - Bravima Media", description: "Transform your renovation business with proven lead generation and conversion strategies.", siteName: "Bravima Media", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/man-sitting-looking-project_23-2148751972.jpg", alt: "Bravima Marketing Dashboard"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Bravima Media - Renovation Contractor Marketing", description: "500+ contractors trust Bravima to generate qualified renovation leads and close more projects.", images: [ - "http://img.b2bpic.net/free-photo/man-sitting-looking-project_23-2148751972.jpg"], - }, -}; + title: "Bravima Media - Renovation Contractor Marketing", description: "Get more leads, close more projects, and grow your renovation business with proven marketing strategies from Bravima Media."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - + + {children} - + +