7 Commits

Author SHA1 Message Date
2b595ab92d Merge version_3 into main
Merge version_3 into main
2026-03-03 06:47:57 +00:00
f951d4f07a Update src/app/page.tsx 2026-03-03 06:47:52 +00:00
b4e631a799 Update src/app/layout.tsx 2026-03-03 06:47:51 +00:00
eac2bf079a Merge version_2 into main
Merge version_2 into main
2026-03-03 06:43:26 +00:00
7218282d16 Update src/app/page.tsx 2026-03-03 06:43:22 +00:00
4b0ae55bab Update src/app/layout.tsx 2026-03-03 06:43:22 +00:00
a14c315343 Merge version_1 into main
Merge version_1 into main
2026-03-03 06:39:44 +00:00
2 changed files with 19 additions and 53 deletions

View File

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

View File

@@ -96,7 +96,7 @@ export default function HomePage() {
<NavbarStyleCentered
navItems={navItemsForNav}
button={{
text: "Get Free Strategy Call", href: "/contact"}}
text: "Get Free ROI Audit", href: "/contact"}}
brandName="PrimeXpert"
/>
</div>
@@ -109,7 +109,7 @@ export default function HomePage() {
tagIcon={TrendingUp}
tagAnimation="slide-up"
buttons={[
{ text: "Get Free Strategy Call", href: "/contact" },
{ text: "Get Free ROI Audit", href: "/contact" },
{ text: "View Our Work", href: "#case-studies" },
]}
buttonAnimation="slide-up"
@@ -229,15 +229,15 @@ export default function HomePage() {
tagAnimation="slide-up"
products={[
{
id: "1", brand: "E-Commerce Retail", name: "300% Revenue Growth in 6 Months", price: "$2.8M Generated", rating: 5,
id: "1", brand: "E-Commerce Retail", name: "300% Revenue Growth in 6 Months", price: "300% Revenue Growth", rating: 5,
reviewCount: "47k+ monthly visitors", imageSrc:
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQKl53Da0H9PeH3bdi25k6wwRg/e-commerce-business-success-visual-showi-1772519761868-94dc5408.png", imageAlt: "E-commerce revenue growth dashboard"},
{
id: "2", brand: "SaaS Technology", name: "200% Lead Increase & 45% Cost Reduction", price: "$1.5M Revenue", rating: 5,
id: "2", brand: "SaaS Technology", name: "200% Lead Increase & 45% Cost Reduction", price: "200% Lead Growth", rating: 5,
reviewCount: "2.3k qualified leads", imageSrc:
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQKl53Da0H9PeH3bdi25k6wwRg/saas-product-dashboard-showing-lead-gene-1772519760790-e70ff407.png", imageAlt: "SaaS lead generation metrics"},
{
id: "3", brand: "Professional Services", name: "1,200% ROAS on Paid Ads", price: "$850K+ Revenue", rating: 5,
id: "3", brand: "Professional Services", name: "1,200% ROAS on Paid Ads", price: "1200% ROAS", rating: 5,
reviewCount: "156 high-value clients", imageSrc:
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQKl53Da0H9PeH3bdi25k6wwRg/professional-services-firm-success-visua-1772519760328-d6037fc0.png", imageAlt: "Professional services campaign performance"},
]}