From 42b15b16c59d4dc6e92033872088cc58ac578a20 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 14:29:25 +0000 Subject: [PATCH] Update src/app/services/page.tsx --- src/app/services/page.tsx | 74 ++++++++------------------------------- 1 file changed, 15 insertions(+), 59 deletions(-) diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index a30fd0f..37a43e3 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -4,7 +4,6 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import FeatureCardEight from "@/components/sections/feature/FeatureCardEight"; import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven"; -import FeatureCardEight as FeatureCardEightProcess from "@/components/sections/feature/FeatureCardEight"; import FooterBase from "@/components/sections/footer/FooterBase"; import { Plane } from "lucide-react"; @@ -49,33 +48,13 @@ export default function ServicesPage() { useInvertedBackground={true} features={[ { - id: 1, - title: "Visa Assistance", - description: "Expert guidance through the entire visa application process with documentation support", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-working-as-travel-agent_23-2150455558.jpg?_wi=2", - imageAlt: "passport visa documents travel paperwork", - }, + id: "1", title: "Visa Assistance", description: "Expert guidance through the entire visa application process with documentation support", imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-working-as-travel-agent_23-2150455558.jpg", imageAlt: "passport visa documents travel paperwork"}, { - id: 2, - title: "Flight Ticket Booking", - description: "Best flight options and rates from verified airlines worldwide", - imageSrc: "http://img.b2bpic.net/free-photo/woman-sitting-with-luggage-waiting-area_107420-85102.jpg?_wi=2", - imageAlt: "airplane booking ticket reservation", - }, + id: "2", title: "Flight Ticket Booking", description: "Best flight options and rates from verified airlines worldwide", imageSrc: "http://img.b2bpic.net/free-photo/woman-sitting-with-luggage-waiting-area_107420-85102.jpg", imageAlt: "airplane booking ticket reservation"}, { - id: 3, - title: "Travel Consultation", - description: "Personalized travel advice and destination planning services", - imageSrc: "http://img.b2bpic.net/free-photo/day-office-travel-agency_23-2150770001.jpg?_wi=2", - imageAlt: "travel consultant advising customer", - }, + id: "3", title: "Travel Consultation", description: "Personalized travel advice and destination planning services", imageSrc: "http://img.b2bpic.net/free-photo/day-office-travel-agency_23-2150770001.jpg", imageAlt: "travel consultant advising customer"}, { - id: 4, - title: "Document Preparation", - description: "Professional preparation of all required travel documentation", - imageSrc: "http://img.b2bpic.net/free-photo/corporate-workers-brainstorming-together_23-2148804564.jpg?_wi=2", - imageAlt: "document preparation business papers", - }, + id: "4", title: "Document Preparation", description: "Professional preparation of all required travel documentation", imageSrc: "http://img.b2bpic.net/free-photo/corporate-workers-brainstorming-together_23-2148804564.jpg", imageAlt: "document preparation business papers"}, ]} buttonAnimation="slide-up" /> @@ -92,40 +71,20 @@ export default function ServicesPage() { useInvertedBackground={false} metrics={[ { - id: "1", - value: "98%", - title: "Customer Satisfaction Rate", - items: [ - "Trusted by thousands of travelers", - "Consistent service excellence", - ], + id: "1", value: "98%", title: "Customer Satisfaction Rate", items: [ + "Trusted by thousands of travelers", "Consistent service excellence"], }, { - id: "2", - value: "24/7", - title: "Professional Support", - items: [ - "Round-the-clock customer assistance", - "Quick response times", - ], + id: "2", value: "24/7", title: "Professional Support", items: [ + "Round-the-clock customer assistance", "Quick response times"], }, { - id: "3", - value: "10+", - title: "Years of Experience", - items: [ - "Expert visa consultants", - "Proven track record", - ], + id: "3", value: "10+", title: "Years of Experience", items: [ + "Expert visa consultants", "Proven track record"], }, { - id: "4", - value: "150+", - title: "Countries Served", - items: [ - "Global travel destinations", - "Worldwide partnerships", - ], + id: "4", value: "150+", title: "Countries Served", items: [ + "Global travel destinations", "Worldwide partnerships"], }, ]} animationType="slide-up" @@ -139,8 +98,7 @@ export default function ServicesPage() { copyrightText="© 2025 Fendy Travels. All rights reserved." columns={[ { - title: "Services", - items: [ + title: "Services", items: [ { label: "Visa Assistance", href: "services" }, { label: "Flight Booking", href: "services" }, { label: "Travel Consultation", href: "services" }, @@ -148,8 +106,7 @@ export default function ServicesPage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "about" }, { label: "Our Process", href: "process" }, { label: "Contact", href: "contact" }, @@ -157,8 +114,7 @@ export default function ServicesPage() { ], }, { - title: "Support", - items: [ + title: "Support", items: [ { label: "FAQ", href: "#" }, { label: "Help Center", href: "#" }, { label: "WhatsApp Chat", href: "https://wa.me/1234567890" }, -- 2.49.1