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 (
-
-