Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-03 06:43:27 +00:00
Showing only changes of commit 4b0ae55bab - Show all commits

View File

@@ -1,60 +1,27 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Nunito_Sans } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const nunitoSans = Nunito_Sans({ const geist = Geist({
variable: "--font-nunito-sans", variable: "--font-geist-sans", subsets: ["latin"],
subsets: ["latin"], });
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "PrimeXpert - Digital Marketing Agency USA | Results-Driven Growth", title: "PrimeXpert - Data-Driven Digital Marketing Agency", description: "Scale your business with ROI-focused campaigns, transparent reporting, and strategic expertise."};
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,
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={`${geist.variable} ${geistMono.variable} antialiased`}>
<body {children}
className={`${nunitoSans.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
@@ -1423,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }