Update src/app/services/page.tsx

This commit is contained in:
2026-03-03 06:39:40 +00:00
parent e03f4dfbaa
commit 16fd892970

View File

@@ -31,8 +31,7 @@ const navItemsForNav = [
const footerColumns = [ const footerColumns = [
{ {
title: "Services", title: "Services", items: [
items: [
{ label: "Paid Ads Management", href: "/services" }, { label: "Paid Ads Management", href: "/services" },
{ label: "SEO Services", href: "/services" }, { label: "SEO Services", href: "/services" },
{ label: "Website Design", href: "/services" }, { label: "Website Design", href: "/services" },
@@ -40,8 +39,7 @@ const footerColumns = [
], ],
}, },
{ {
title: "Company", title: "Company", items: [
items: [
{ label: "About Us", href: "/about" }, { label: "About Us", href: "/about" },
{ label: "Case Studies", href: "/" }, { label: "Case Studies", href: "/" },
{ label: "Team", href: "/about" }, { label: "Team", href: "/about" },
@@ -49,8 +47,7 @@ const footerColumns = [
], ],
}, },
{ {
title: "Support", title: "Support", items: [
items: [
{ label: "Contact Us", href: "/contact" }, { label: "Contact Us", href: "/contact" },
{ label: "FAQ", href: "#" }, { label: "FAQ", href: "#" },
{ label: "Resources", href: "#" }, { label: "Resources", href: "#" },
@@ -58,8 +55,7 @@ const footerColumns = [
], ],
}, },
{ {
title: "Legal", title: "Legal", items: [
items: [
{ label: "Privacy Policy", href: "#" }, { label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" }, { label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" }, { label: "Cookie Policy", href: "#" },
@@ -76,7 +72,7 @@ export default function ServicesPage() {
borderRadius="pill" borderRadius="pill"
contentWidth="mediumSmall" contentWidth="mediumSmall"
sizing="mediumLarge" sizing="mediumLarge"
background="floatingGradient" background="circleGradient"
cardStyle="gradient-bordered" cardStyle="gradient-bordered"
primaryButtonStyle="double-inset" primaryButtonStyle="double-inset"
secondaryButtonStyle="glass" secondaryButtonStyle="glass"
@@ -86,9 +82,7 @@ export default function ServicesPage() {
<NavbarStyleCentered <NavbarStyleCentered
navItems={navItemsForNav} navItems={navItemsForNav}
button={{ button={{
text: "Get Free Strategy Call", text: "Get Free Strategy Call", href: "/contact"}}
href: "/contact",
}}
brandName="PrimeXpert" brandName="PrimeXpert"
/> />
</div> </div>
@@ -103,40 +97,28 @@ export default function ServicesPage() {
features={[ features={[
{ {
icon: DollarSign, icon: DollarSign,
title: "Paid Ads Management", title: "Paid Ads Management", description:
description: "Strategic campaigns across Google Ads, Facebook, Instagram, TikTok, and LinkedIn. We optimize for maximum ROI, minimizing cost per acquisition while scaling revenue."},
"Strategic campaigns across Google Ads, Facebook, Instagram, TikTok, and LinkedIn. We optimize for maximum ROI, minimizing cost per acquisition while scaling revenue.",
},
{ {
icon: Search, icon: Search,
title: "Search Engine Optimization", title: "Search Engine Optimization", description:
description: "Technical SEO, on-page optimization, and link building strategies that boost organic visibility, drive qualified traffic, and improve search rankings for competitive keywords."},
"Technical SEO, on-page optimization, and link building strategies that boost organic visibility, drive qualified traffic, and improve search rankings for competitive keywords.",
},
{ {
icon: Code, icon: Code,
title: "Website Design & Development", title: "Website Design & Development", description:
description: "High-converting websites built with modern technology, mobile-responsive design, and user experience best practices. We focus on conversion optimization and fast load times."},
"High-converting websites built with modern technology, mobile-responsive design, and user experience best practices. We focus on conversion optimization and fast load times.",
},
{ {
icon: Share2, icon: Share2,
title: "Social Media Marketing", title: "Social Media Marketing", description:
description: "Engaging content strategies, community management, and paid social campaigns that build brand loyalty, increase followers, and drive meaningful engagement."},
"Engaging content strategies, community management, and paid social campaigns that build brand loyalty, increase followers, and drive meaningful engagement.",
},
{ {
icon: Palette, icon: Palette,
title: "Branding & Creative Design", title: "Branding & Creative Design", description:
description: "Compelling visual identities, logo design, brand guidelines, graphics, and creative assets that make your brand stand out and resonate with your target audience."},
"Compelling visual identities, logo design, brand guidelines, graphics, and creative assets that make your brand stand out and resonate with your target audience.",
},
{ {
icon: Funnel, icon: Funnel,
title: "Sales Funnel Development", title: "Sales Funnel Development", description:
description: "Strategic funnels designed to nurture leads at every stage, increase conversions, and maximize customer lifetime value through targeted messaging and automation."},
"Strategic funnels designed to nurture leads at every stage, increase conversions, and maximize customer lifetime value through targeted messaging and automation.",
},
]} ]}
animationType="slide-up" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
@@ -153,32 +135,16 @@ export default function ServicesPage() {
tagAnimation="slide-up" tagAnimation="slide-up"
metrics={[ metrics={[
{ {
id: "1", id: "1", value: "342", title: "%", description: "Average ROI improvement for clients", icon: TrendingUp,
value: "342",
title: "%",
description: "Average ROI improvement for clients",
icon: TrendingUp,
}, },
{ {
id: "2", id: "2", value: "2.5", title: "M+", description: "Total leads generated annually", icon: Users,
value: "2.5",
title: "M+",
description: "Total leads generated annually",
icon: Users,
}, },
{ {
id: "3", id: "3", value: "98", title: "%", description: "Client satisfaction and retention rate", icon: Heart,
value: "98",
title: "%",
description: "Client satisfaction and retention rate",
icon: Heart,
}, },
{ {
id: "4", id: "4", value: "45", title: "days", description: "Average time to see measurable results", icon: Award,
value: "45",
title: "days",
description: "Average time to see measurable results",
icon: Award,
}, },
]} ]}
gridVariant="uniform-all-items-equal" gridVariant="uniform-all-items-equal"
@@ -196,7 +162,7 @@ export default function ServicesPage() {
{ text: "Schedule Your Free Consultation", href: "/contact" }, { text: "Schedule Your Free Consultation", href: "/contact" },
{ text: "View Case Studies", href: "/" }, { text: "View Case Studies", href: "/" },
]} ]}
background={{ variant: "floatingGradient" }} background={{ variant: "plain" }}
useInvertedBackground={false} useInvertedBackground={false}
/> />
</div> </div>