From e4526dd844de2f7e33a204c9e963f184bcb59a65 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 04:04:54 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 59 ++++++++++------------------------------------ 1 file changed, 13 insertions(+), 46 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 45bbfaf..76c61d5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,62 +1,30 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; -import { Source_Sans_3 } from "next/font/google"; +import "./styles/variables.css"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Performance Marketing for Service Businesses | ThirdLinkMedia", - description: "Results-driven marketing for high-value service firms. We deliver qualified clients tied to real revenue growth—no vanity metrics. Book your discovery call today.", - keywords: "performance marketing, service business marketing, B2B marketing, lead generation, client acquisition", - openGraph: { - title: "Performance Marketing for Service Businesses That Actually Work", - description: "Predictable client acquisition tied to real revenue growth. ThirdLinkMedia specializes in high-value service businesses.", - siteName: "ThirdLinkMedia", - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Performance Marketing for Service Businesses", - description: "Results-driven marketing. Qualified leads. Measurable ROI.", - }, - robots: { - index: true, - follow: true, - }, -}; + title: "ThirdLinkMedia - Performance Marketing for Service Businesses", description: "Results-driven performance marketing for service businesses. Predictable client acquisition tied to real revenue growth."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +