diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 5096ec7..31c2ec2 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -7,7 +7,7 @@ import AboutMetric from "@/components/sections/about/AboutMetric"; import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree"; import ContactText from "@/components/sections/contact/ContactText"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; -import { Users, Globe, Plane, Award } from "lucide-react"; +import { Users, Globe, Plane, Award, Sparkles } from "lucide-react"; export default function AboutPage() { const navItems = [ @@ -25,7 +25,7 @@ export default function AboutPage() { borderRadius="pill" contentWidth="medium" sizing="large" - background="noise" + background="circleGradient" cardStyle="subtle-shadow" primaryButtonStyle="flat" secondaryButtonStyle="solid" @@ -49,24 +49,16 @@ export default function AboutPage() { metrics={[ { icon: Users, - label: "Active Pilots", - value: "15,000+", - }, + label: "Active Pilots", value: "15,000+"}, { icon: Globe, - label: "Countries", - value: "120+", - }, + label: "Countries", value: "120+"}, { icon: Plane, - label: "Virtual Flights", - value: "500K+", - }, + label: "Virtual Flights", value: "500K+"}, { icon: Award, - label: "Virtual Airlines", - value: "85+", - }, + label: "Virtual Airlines", value: "85+"}, ]} metricsAnimation="slide-up" useInvertedBackground={true} @@ -79,36 +71,16 @@ export default function AboutPage() { title="Why Join My Wings 2025?" description="Experience the ultimate flight simulator community platform designed for pilots and aviation enthusiasts" tag="Features" - tagIcon="Sparkles" + tagIcon={Sparkles} features={[ { - id: "01", - title: "Flight Simulator Community", - description: "Connect with thousands of virtual pilots worldwide. Share experiences, discuss routes, and collaborate on virtual airlines", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-modern-flight-simulator-cockpit-interf-1772796625572-2b8f8af5.png?_wi=4", - imageAlt: "Flight simulator cockpit interface", - }, + id: "01", title: "Flight Simulator Community", description: "Connect with thousands of virtual pilots worldwide. Share experiences, discuss routes, and collaborate on virtual airlines", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-modern-flight-simulator-cockpit-interf-1772796625572-2b8f8af5.png", imageAlt: "Flight simulator cockpit interface"}, { - id: "02", - title: "Share Screenshots & Flights", - description: "Showcase your stunning flight captures and route achievements. Build your aviation portfolio with our gallery system", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-modern-gallery-interface-displaying-be-1772796626406-76c3310f.png?_wi=4", - imageAlt: "Gallery interface with flight screenshots", - }, + id: "02", title: "Share Screenshots & Flights", description: "Showcase your stunning flight captures and route achievements. Build your aviation portfolio with our gallery system", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-modern-gallery-interface-displaying-be-1772796626406-76c3310f.png", imageAlt: "Gallery interface with flight screenshots"}, { - id: "03", - title: "Aviation News & Updates", - description: "Stay current with real-world aviation industry news and flight simulator updates. Get insights from community experts", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-modern-aviation-news-dashboard-interfa-1772796626457-b7e13ed8.png?_wi=4", - imageAlt: "Aviation news dashboard", - }, + id: "03", title: "Aviation News & Updates", description: "Stay current with real-world aviation industry news and flight simulator updates. Get insights from community experts", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-modern-aviation-news-dashboard-interfa-1772796626457-b7e13ed8.png", imageAlt: "Aviation news dashboard"}, { - id: "04", - title: "Pilot Community Hub", - description: "Find your crew, join virtual airlines, and organize group flights. Build lasting connections with aviation enthusiasts", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-vibrant-community-hub-interface-showin-1772796625701-90fa41b8.png?_wi=4", - imageAlt: "Community hub with pilot profiles", - }, + id: "04", title: "Pilot Community Hub", description: "Find your crew, join virtual airlines, and organize group flights. Build lasting connections with aviation enthusiasts", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-vibrant-community-hub-interface-showin-1772796625701-90fa41b8.png", imageAlt: "Community hub with pilot profiles"}, ]} textboxLayout="default" animationType="slide-up" @@ -124,15 +96,11 @@ export default function AboutPage() { animationType="entrance-slide" buttons={[ { - text: "Join Community Now", - href: "/community", - }, + text: "Join Community Now", href: "/community"}, { - text: "Explore Gallery", - href: "/gallery", - }, + text: "Explore Gallery", href: "/gallery"}, ]} - background={{ variant: "noise" }} + background={{ variant: "plain" }} useInvertedBackground={true} /> @@ -142,13 +110,9 @@ export default function AboutPage() {