From caf8ccb3a6db46f8ba20863a6995cce9371d49cc Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 17:07:44 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 69 +++++----------------------------------------- 1 file changed, 7 insertions(+), 62 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 62cd8da..75b0c05 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,74 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito } 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 nunito = Nunito({ - variable: "--font-nunito", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "LocalLaunch - Web Design for Local Businesses", - description: "Professional website design tailored for local businesses. Fast launches, local SEO, and ongoing support. Get more customers online.", - keywords: "website design local businesses, small business web design, local SEO, contractor websites, restaurant websites", - metadataBase: new URL("https://locallaunch.com"), - alternates: { - canonical: "https://locallaunch.com", - }, - openGraph: { - title: "LocalLaunch - Web Design for Local Businesses", - description: "Professional website design tailored for local businesses. Fast launches, local SEO, and ongoing support.", - type: "website", - siteName: "LocalLaunch", - url: "https://locallaunch.com", - images: [ - { - url: "http://img.b2bpic.net/free-vector/travel-adventure-landing-page-template_1361-896.jpg", - alt: "LocalLaunch website design showcase", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "LocalLaunch - Web Design for Local Businesses", - description: "Professional website design tailored for local businesses. Fast launches, local SEO, and ongoing support.", - images: ["http://img.b2bpic.net/free-vector/travel-adventure-landing-page-template_1361-896.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "LocalLaunch - Professional Websites for Local Businesses", description: "Get a professional website for your local business in 7-10 days. Fast, modern, and optimized for conversions."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}