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,59 +1,26 @@
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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${nunitoSans.variable} antialiased`}
>
<Tag />
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
@@ -1423,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}