From 022fe612cd9e47df401e142be03bd1c67a1772fc Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 22:42:05 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 52 ++++++++++++---------------------------------- 1 file changed, 13 insertions(+), 39 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index abc03f6..793e806 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + + {children} +