From e7e6dfc1c65949bbd2edce3f84f850004a4aeea6 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 16:21:42 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1435 +------------------------------------------- 1 file changed, 9 insertions(+), 1426 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 36b6ce4..e940f86 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1437 +1,21 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -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"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - 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, - }, -}; + 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."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -