diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index 6cd48b6..470b3b4 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -5,7 +5,6 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; import FeatureHoverPattern from "@/components/sections/feature/featureHoverPattern/FeatureHoverPattern"; import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven"; -import FeatureHoverPattern as FeatureHoverPatternDiff from "@/components/sections/feature/featureHoverPattern/FeatureHoverPattern"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; import { Briefcase, TrendingUp, Shield, PieChart, Award, Zap, CheckCircle, Target } from "lucide-react"; @@ -20,8 +19,7 @@ export default function ServicesPage() { const footerColumns = [ { - title: "Services", - items: [ + title: "Services", items: [ { label: "Financial Consulting", href: "/services" }, { label: "Risk Management", href: "/services" }, { label: "Portfolio Strategy", href: "/services" }, @@ -29,8 +27,7 @@ export default function ServicesPage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "#" }, { label: "Our Approach", href: "#process" }, { label: "Team", href: "#" }, @@ -38,8 +35,7 @@ export default function ServicesPage() { ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "Schedule Consultation", href: "#contact" }, { label: "Contact Us", href: "/contact" }, { label: "Support", href: "/contact" }, @@ -47,8 +43,7 @@ export default function ServicesPage() { ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Financial Insights", href: "#" }, { label: "Market Analysis", href: "#" }, { label: "Investment Guide", href: "#" }, @@ -81,24 +76,16 @@ export default function ServicesPage() { features={[ { icon: Briefcase, - title: "Strategic Financial Consulting", - description: "Professional financial advisory designed to align financial decisions with long-term strategic objectives and capital preservation.", - }, + title: "Strategic Financial Consulting", description: "Professional financial advisory designed to align financial decisions with long-term strategic objectives and capital preservation."}, { icon: TrendingUp, - title: "Advanced Financial Instruments", - description: "Access to sophisticated financial tools and instruments designed to optimize investment performance and market positioning.", - }, + title: "Advanced Financial Instruments", description: "Access to sophisticated financial tools and instruments designed to optimize investment performance and market positioning."}, { icon: Shield, - title: "Risk Management & Assessment", - description: "Our proprietary assessment models help identify, measure, and manage financial risk with precision and institutional discipline.", - }, + title: "Risk Management & Assessment", description: "Our proprietary assessment models help identify, measure, and manage financial risk with precision and institutional discipline."}, { icon: PieChart, - title: "Portfolio Strategy", - description: "We help investors structure portfolios that balance opportunity, diversification, and protection for long-term wealth creation.", - }, + title: "Portfolio Strategy", description: "We help investors structure portfolios that balance opportunity, diversification, and protection for long-term wealth creation."}, ]} animationType="slide-up" textboxLayout="default" @@ -112,37 +99,13 @@ export default function ServicesPage() { description="A disciplined, four-step methodology refined through years of institutional financial advisory experience." metrics={[ { - id: "1", - value: "01", - title: "Financial Analysis", - description: "Deep assessment of financial objectives and risk tolerance", - imageSrc: "http://img.b2bpic.net/free-photo/executives-giving-ideas-meeting_1098-816.jpg?_wi=3", - imageAlt: "Financial analysis and strategic planning", - }, + id: "1", value: "01", title: "Financial Analysis", description: "Deep assessment of financial objectives and risk tolerance", imageSrc: "http://img.b2bpic.net/free-photo/executives-giving-ideas-meeting_1098-816.jpg", imageAlt: "Financial analysis and strategic planning"}, { - id: "2", - value: "02", - title: "Strategic Planning", - description: "Tailored financial strategies using advanced tools and models", - imageSrc: "http://img.b2bpic.net/free-vector/dashboard-user-panel_23-2148433573.jpg?_wi=4", - imageAlt: "Strategic planning and analysis", - }, + id: "2", value: "02", title: "Strategic Planning", description: "Tailored financial strategies using advanced tools and models", imageSrc: "http://img.b2bpic.net/free-vector/dashboard-user-panel_23-2148433573.jpg", imageAlt: "Strategic planning and analysis"}, { - id: "3", - value: "03", - title: "Implementation", - description: "Execution through carefully selected financial instruments", - imageSrc: "http://img.b2bpic.net/free-photo/businessman-with-his-staff_1098-2177.jpg?_wi=2", - imageAlt: "Implementation and execution", - }, + id: "3", value: "03", title: "Implementation", description: "Execution through carefully selected financial instruments", imageSrc: "http://img.b2bpic.net/free-photo/businessman-with-his-staff_1098-2177.jpg", imageAlt: "Implementation and execution"}, { - id: "4", - value: "04", - title: "Continuous Optimization", - description: "Markets evolve. Our strategies evolve with them.", - imageSrc: "http://img.b2bpic.net/free-photo/executives-giving-ideas-meeting_1098-816.jpg?_wi=4", - imageAlt: "Continuous optimization and adaptation", - }, + id: "4", value: "04", title: "Continuous Optimization", description: "Markets evolve. Our strategies evolve with them.", imageSrc: "http://img.b2bpic.net/free-photo/executives-giving-ideas-meeting_1098-816.jpg", imageAlt: "Continuous optimization and adaptation"}, ]} animationType="slide-up" textboxLayout="default" @@ -151,30 +114,22 @@ export default function ServicesPage() {
-