From 975ff85f8e40422777703a1e507b3777132f4424 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 01:00:15 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 49 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 42 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f2dfc72..689202a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } 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 inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Web Design Agency | LeadGen Designs - Convert Visitors to Clients", description: "LeadGen Designs creates high-converting websites for businesses. Strategic design + powerful functionality = digital transformation. Get your custom proposal today.", keywords: "web design, web development, UX design, UI design, conversion optimization, digital marketing websites, agency", metadataBase: new URL("https://leadgendesigns.com"), - alternates: { - canonical: "https://leadgendesigns.com" - }, - openGraph: { - title: "Web Design Agency | LeadGen Designs", description: "Transform your digital presence with high-converting web design. 200+ successful projects. Free consultation available.", url: "https://leadgendesigns.com", siteName: "LeadGen Designs", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-vector/dashboard-user-panel-template_23-2148375531.jpg", alt: "LeadGen Designs - Web Design Portfolio" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Web Design Agency | LeadGen Designs", description: "High-converting websites that drive real business results. Expert design + development.", images: ["http://img.b2bpic.net/free-vector/dashboard-user-panel-template_23-2148375531.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "LeadGen Designs - High-Converting Websites That Drive Results", description: "Transform your digital presence with conversion-focused web design. Average client sees 40% more leads within 90 days."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}