From 78bb761641c3f38841c2dfe1b5d79112d89a4745 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 16:51:46 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1413 +------------------------------------------- 1 file changed, 18 insertions(+), 1395 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7f8d38e..b18d508 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1414 +1,38 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Montserrat } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "WebBug | Modern Websites for Local Businesses", description: "Professional web design for service businesses. Fast, modern websites designed to generate leads and drive conversions for plumbers, contractors, and service providers.", keywords: "web design, local business websites, service business, landing pages, website design, lead generation", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "WebBug | Modern Websites for Local Businesses", description: "Professional web design for service businesses. Fast, modern websites designed to generate leads.", url: "https://webbugnow.com", siteName: "WebBug", type: "website"}, - twitter: { - card: "summary_large_image", title: "WebBug | Modern Websites for Local Businesses", description: "Professional web design for service businesses that brings real results."}, -}; + title: "Webbug - Web Design for Medical & Dental Practices", description: "Professional web design for medical and dental professionals. HIPAA-compliant websites designed to build patient trust and grow your practice."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - +