74 lines
2.2 KiB
TypeScript
74 lines
2.2 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Halant } from "next/font/google";
|
|
import { Inter } from "next/font/google";
|
|
import { Manrope } from "next/font/google";
|
|
import "./globals.css";
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
import Tag from "@/tag/Tag";
|
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
|
|
|
const halant = Halant({
|
|
variable: "--font-halant",
|
|
subsets: ["latin"],
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
});
|
|
|
|
const inter = Inter({
|
|
variable: "--font-inter",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
const manrope = Manrope({
|
|
variable: "--font-manrope",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Gateway Business Solutions | Copier Leasing & Repair St. Louis",
|
|
description: "Professional copier sales, leasing, repair, and managed print services for St. Louis businesses. Local service, fast response, affordable solutions.",
|
|
keywords: "copier leasing St Louis, copier sales, printer repair, managed print services",
|
|
metadataBase: new URL("https://gatewaybizsolutions.com"),
|
|
alternates: {
|
|
canonical: "https://gatewaybizsolutions.com",
|
|
},
|
|
openGraph: {
|
|
title: "Gateway Business Solutions - Copier & Printing Solutions",
|
|
description: "Sales, leasing, repair, and managed print services for St. Louis businesses",
|
|
url: "https://gatewaybizsolutions.com",
|
|
siteName: "Gateway Business Solutions",
|
|
type: "website",
|
|
},
|
|
twitter: {
|
|
card: "summary_large_image",
|
|
title: "Gateway Business Solutions - Copier Leasing St. Louis",
|
|
description: "Professional copier and office equipment solutions for local businesses",
|
|
},
|
|
robots: {
|
|
index: true,
|
|
follow: true,
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body
|
|
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
|
>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
} |