From a0dfdd2aba44eb48a50c3e43a49a30227f4a5fde Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Mar 2026 21:57:29 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index da5b4f2..f8af5f4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Raleway } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Raleway } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const raleway = Raleway({ variable: "--font-raleway", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Local Site Solutions | Professional Websites for Small Businesses", + description: "Get a professional website for your local business. Custom design, mobile-friendly, Google optimized. Simple monthly pricing starting at $75/month. No setup fees.", + keywords: "small business website, local business website, affordable website design, website builder, local SEO", + metadataBase: new URL("https://localsite.solutions"), + alternates: { + canonical: "https://localsite.solutions", + }, + openGraph: { + title: "Professional Websites for Local Businesses | Local Site Solutions", + description: "Custom websites designed to bring more customers to your local business. Simple monthly pricing, no upfront costs.", + url: "https://localsite.solutions", + siteName: "Local Site Solutions", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-vector/gradient-dashboard-user-panel-template_23-2148370540.jpg", + alt: "Local Site Solutions - Professional Website Design", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Professional Websites for Small Businesses", + description: "Get your professional website today. Custom design, mobile-friendly, Google optimized. Monthly pricing.", + images: ["http://img.b2bpic.net/free-vector/gradient-dashboard-user-panel-template_23-2148370540.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}