From 9064cbba4d70b82d93fc6159237b5cd9d27ed1d5 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 22:04:53 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 44 +++++++------------------------------------- 1 file changed, 7 insertions(+), 37 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5cbe77b..f906b29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Lora } 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 lora = Lora({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Professional Website Creation Services | Webild", description: "Custom websites built fast and affordably for small businesses and startups. Expert design, conversion optimization, and 4-week launch guarantee. Get your free quote today.", keywords: "website design, web development, small business websites, startup web design, affordable websites, fast website creation, conversion optimization", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Professional Website Creation Services | Webild", description: "We create custom, high-converting websites that help small businesses establish credibility and attract customers—without the enterprise price tag.", siteName: "Webild", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-vector/professional-dashboard-user-panel_23-2148310538.jpg", alt: "Professional website dashboard and design showcase"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Professional Website Creation Services | Webild", description: "Custom websites built fast and affordably for small businesses and startups.", images: ["http://img.b2bpic.net/free-vector/professional-dashboard-user-panel_23-2148310538.jpg"], - }, -}; + title: "Webild - Professional Websites Built Fast, Priced Right", description: "Custom, high-converting websites for small businesses and startups. Fast, affordable web design and development."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}