From 4b0ae55bab1a999f39a605943b28c8fc3b100866 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 06:43:22 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 64 +++++++++++----------------------------------- 1 file changed, 15 insertions(+), 49 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d705391..d482e5a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,61 +1,28 @@ import type { Metadata } from "next"; -import { Nunito_Sans } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", - subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], +}); + +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "PrimeXpert - Digital Marketing Agency USA | Results-Driven Growth", - description: "Leading digital marketing agency offering paid ads, SEO, web design & more. USA-based team driving measurable ROI for 850+ clients. Get your free strategy call today.", - keywords: "digital marketing agency USA, SEO services, PPC management, paid ads, web development, social media marketing, digital marketing solutions", - metadataBase: new URL("https://primexpert.com"), - alternates: { - canonical: "https://primexpert.com", - }, - openGraph: { - title: "PrimeXpert - Scale Your Brand with Data-Driven Marketing", - description: "Transform your business with expert digital marketing strategies. 500M+ in client revenue generated. USA-based agency dedicated to your growth.", - url: "https://primexpert.com", - siteName: "PrimeXpert", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQKl53Da0H9PeH3bdi25k6wwRg/modern-analytics-dashboard-showing-marke-1772519761923-8053cf0d.png", - alt: "PrimeXpert Digital Marketing Dashboard", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "PrimeXpert - Digital Marketing Agency", - description: "Data-driven digital marketing solutions for business growth. Paid ads, SEO, web design & more.", - images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQKl53Da0H9PeH3bdi25k6wwRg/modern-analytics-dashboard-showing-marke-1772519761923-8053cf0d.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "PrimeXpert - Data-Driven Digital Marketing Agency", description: "Scale your business with ROI-focused campaigns, transparent reporting, and strategic expertise."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +