Merge version_2 into main #4
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1421,7 +1380,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -80,7 +80,7 @@ export default function HomePage() {
|
||||
showBlur={true}
|
||||
showDimOverlay={true}
|
||||
buttons={[
|
||||
{ text: "Request a Quote", href: "/contact" },
|
||||
{ text: "Get Custom Quote Now", href: "/contact" },
|
||||
{ text: "View Portfolio", href: "/portfolio" },
|
||||
]}
|
||||
/>
|
||||
@@ -195,4 +195,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user