import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import { Tag } from "@/components/tag/Tag"; import { ServiceWrapper } from "@/providers/service-wrapper/ServiceWrapper"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { 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, }: { children: React.ReactNode; }) { return (