|
|
|
|
@@ -1,51 +1,26 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Public_Sans } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import { DM_Sans, Space_Mono } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
|
|
|
|
|
const publicSans = Public_Sans({
|
|
|
|
|
variable: "--font-public-sans", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
const dmSans = DM_Sans({ subsets: ["latin"], variable: "--font-dm-sans" });
|
|
|
|
|
const spaceMono = Space_Mono({
|
|
|
|
|
weight: ["400", "700"],
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
variable: "--font-space-mono"});
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "HighRoute Marketing - Digital Marketing & Web Development", description: "HighRoute Marketing delivers custom websites, nationwide SEO optimization, and strategic advertising. Trusted by 500+ clients. Get your free consultation today.", keywords: "digital marketing, SEO services, web development, advertising, marketing agency, nationwide marketing, content marketing", metadataBase: new URL("https://highroute.marketing"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://highroute.marketing"},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "HighRoute Marketing - Digital Marketing Agency", description: "Transform your business with data-driven marketing strategies. Custom websites, SEO, advertising, and more.", url: "https://highroute.marketing", siteName: "HighRoute Marketing", type: "website", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/senior-people-school-class-with-laptop-computer_23-2150104940.jpg", alt: "HighRoute Marketing Agency"},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "HighRoute Marketing - Digital Marketing & Web Services", description: "Elevate your brand with nationwide marketing strategy, custom web development, and proven SEO results.", images: ["http://img.b2bpic.net/free-photo/senior-people-school-class-with-laptop-computer_23-2150104940.jpg"],
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
title: "HighRoute Marketing | SEO, Web Design & Paid Advertising Agency", description: "Transform your business with HighRoute Marketing. Custom websites, nationwide SEO domination, and precision advertising. Partner with certified marketing professionals."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${publicSans.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={`${dmSans.variable} ${spaceMono.variable}`}>
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1413,7 +1388,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|