From 17e7c3befa2bbf2a2bbbefeaf35e72b0de3b0ed1 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 13:23:26 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 42 ++++++------------------------------------ 1 file changed, 6 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 667536f..99f10b2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,20 @@ import type { Metadata } from "next"; -import { Open_Sans } from "next/font/google"; -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 openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); - -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: "WebiSecured | Professional Web Design for Local Businesses", description: "Custom web design services for local businesses. Stunning websites that attract customers and drive growth. SEO-optimized, mobile-friendly, built to convert.", keywords: "web design, local business websites, professional website design, small business web design, SEO-friendly websites, custom website design", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "WebiSecured | Professional Web Design for Local Businesses", description: "Custom web design services for local businesses. Stunning websites that attract customers and drive growth.", type: "website", siteName: "WebiSecured"}, - twitter: { - card: "summary_large_image", title: "WebiSecured | Professional Web Design for Local Businesses", description: "Custom web design services for local businesses. Stunning websites that attract customers and drive growth."}, -}; + title: "WebiSecured - Professional Web Design for Local Businesses", description: "Get more customers online with stunning, conversion-optimized websites designed for local businesses."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}