From 5fe61d4a66b9b117c58356c636cff02a06632a0e Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 14:21:44 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 42 ++++++------------------------------------ 1 file changed, 6 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4b1b3ff..f84d0b5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,20 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Bespoke Web Design for Small & Mid-Sized Businesses | Web Ready", description: "Custom websites designed to convert. Web Ready builds high-performance landing pages for Brighton-based small to mid-sized businesses. No templates, no overhead.", keywords: "web design Brighton, custom website design, landing page design, small business websites, web design services", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Bespoke Websites That Connect You to Customers", description: "Custom web design for small and mid-sized businesses. No templates, personal service, proven results.", type: "website", siteName: "Web Ready", images: [ - { - url: "http://img.b2bpic.net/free-photo/old-person-learning-use-technology_23-2149366891.jpg", alt: "Web Ready - Custom Website Design"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Bespoke Websites That Connect You to Customers", description: "Custom web design by Ben Wickham. No templates, just results.", images: [ - "http://img.b2bpic.net/free-photo/old-person-learning-use-technology_23-2149366891.jpg"], - }, -}; + title: "Web Ready - Custom Landing Pages & Websites", description: "Custom landing pages designed to connect you to customers. Custom websites for small and mid-sized businesses."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}