From bec1846c52f402e0e6ad80e84404a54126ef8782 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 13:42:07 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 58 +++++++--------------------------------------- 1 file changed, 8 insertions(+), 50 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5686142..7c2af24 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,18 @@ -import type { Metadata } from "next"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); +import type { Metadata } from 'next'; export const metadata: Metadata = { - title: "Custom Signage Solutions | High-Visibility Signs | Color Signs", - description: "Professional custom signage for businesses. High-contrast color combinations, durable materials (acrylic, aluminum, stainless steel), and expert installation. Request a quote today.", - keywords: "signage, custom signs, name plates, sign boards, high contrast signs, professional signage, durable signs, business signage, outdoor signs, indoor signs", - metadataBase: new URL("https://colorsigns.com"), - alternates: { - canonical: "https://colorsigns.com", - }, - openGraph: { - title: "High-Visibility Custom Signage | Color Signs", - description: "Expert signage solutions designed for maximum visibility and durability. Acrylic, aluminum, stainless steel options with professional design and installation.", - url: "https://colorsigns.com", - siteName: "Color Signs", - type: "website", - images: [ - { - url: "https://colorsigns.com/og-image.jpg", - alt: "Professional business signage from Color Signs", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Professional Custom Signage Solutions", - description: "High-visibility signs engineered for durability and brand consistency.", - images: ["https://colorsigns.com/twitter-image.jpg"], - }, - robots: { - index: true, - follow: true, - }, + title: 'Color Signs | Professional Custom Signage Solutions', + description: 'High-visibility custom signage for businesses. Expert design, premium materials, professional installation.', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}