From db73b9ac07bfac214d39b6b1d3b0c4288ea4be65 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 03:32:20 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 55 ++++++---------------------------------------- 1 file changed, 7 insertions(+), 48 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b5021d3..68660b4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,19 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Figtree } 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 figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "Stratus Web Co | Websites Built to Convert Local Customers", description: "Get a free sample website for your local business. Stratus Web Co builds clean, modern sites designed to attract paying customers. No templates. No commitment.", keywords: "web design, local business website, small business website builder, website design agency, customer conversion", metadataBase: new URL("https://stratus-web-co.com"), - alternates: { - canonical: "https://stratus-web-co.com" - }, - openGraph: { - title: "Stratus Web Co | Websites Built to Convert Local Customers", description: "Get a free sample website for your local business. Stratus Web Co builds clean, modern sites designed to attract paying customers.", url: "https://stratus-web-co.com", siteName: "Stratus Web Co", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/business-owner-analyzing-blank-mockup-display-smartphone_482257-87225.jpg", alt: "Stratus Web Co - Modern Website Design" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Stratus Web Co | Websites Built to Convert Local Customers", description: "Get a free sample website for your local business. See exactly what's possible.", images: ["http://img.b2bpic.net/free-photo/business-owner-analyzing-blank-mockup-display-smartphone_482257-87225.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Stratus Web Co - Local Business Websites That Convert", description: "Professional website design for local businesses. See your free demo website—no commitment required."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +