From a0c868f47d3420ebaef5fafbd0efc8d23b1de2c3 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 16:23:31 +0000 Subject: [PATCH] Switch to version 2: modified src/app/layout.tsx --- src/app/layout.tsx | 1435 +++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 1426 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e940f86..36b6ce4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,21 +1,1437 @@ import type { Metadata } from "next"; +import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import "./styles/variables.css"; -import "./styles/base.css"; +import { Lato } from "next/font/google"; +import "./globals.css"; +import { ServiceWrapper } from "@/components/ServiceWrapper"; +import Tag from "@/tag/Tag"; -const inter = Inter({ 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 lato = Lato({ + variable: "--font-lato", + subsets: ["latin"], + weight: ["100", "300", "400", "700", "900"], +}); export const metadata: Metadata = { - title: "Forge Web Co. | Professional Websites for Small Businesses", description: "Custom, mobile-friendly websites designed specifically for small local businesses. Get online, get found, get customers."}; + title: "Forge Web Co. | Professional Websites for Small Businesses", + description: "Clean, mobile-friendly websites for local service businesses. Website design, SEO setup, and hosting maintenance. Simple pricing, real results. Get your business online today.", + keywords: "website design, small business websites, local service websites, web design services, professional website design", + openGraph: { + title: "Forge Web Co. - Websites Built for Small Businesses", + description: "Professional websites that help small businesses get found online and turn visitors into customers.", + siteName: "Forge Web Co.", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-psd/business-template-design_23-2150316189.jpg", + alt: "Forge Web Co. professional website example", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Forge Web Co. - Professional Websites for Small Businesses", + description: "Get a professional website for your local service business. Simple pricing, ongoing support.", + images: ["http://img.b2bpic.net/free-psd/business-template-design_23-2150316189.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, -}: { +}: Readonly<{ children: React.ReactNode; -}) { +}>) { return ( - - {children} + + + + + {children} + +