From 821d6cbea3b99742e98246ccc47030c36790351b Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 11:33:12 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 68 ++++++++++-------------------------------- 1 file changed, 16 insertions(+), 52 deletions(-) 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() { From 8f2ae5a5ce0d781c34fca9659509f0e50fe5e699 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 11:33:12 +0000 Subject: [PATCH 2/5] Update src/app/community/page.tsx --- src/app/community/page.tsx | 90 ++++++++------------------------------ 1 file changed, 19 insertions(+), 71 deletions(-) diff --git a/src/app/community/page.tsx b/src/app/community/page.tsx index d8e945f..29f988b 100644 --- a/src/app/community/page.tsx +++ b/src/app/community/page.tsx @@ -26,7 +26,7 @@ export default function CommunityPage() { borderRadius="pill" contentWidth="medium" sizing="large" - background="noise" + background="circleGradient" cardStyle="subtle-shadow" primaryButtonStyle="flat" secondaryButtonStyle="solid" @@ -51,16 +51,14 @@ export default function CommunityPage() { textPosition="bottom-left" showBlur={true} showDimOverlay={false} - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-stunning-cinematic-view-of-a-commercia-1772796625376-b6098995.png?_wi=2" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-stunning-cinematic-view-of-a-commercia-1772796625376-b6098995.png" imageAlt="Airplane flying through beautiful sky with clouds" buttons={[ { - text: "Find Crew", - href: "#crew" + text: "Find Crew", href: "#crew" }, { - text: "Join Virtual Airline", - href: "#airlines" + text: "Join Virtual Airline", href: "#airlines" } ]} /> @@ -74,32 +72,16 @@ export default function CommunityPage() { tagIcon={Users} features={[ { - id: "01", - title: "Pilot Profiles & Rankings", - description: "Build your aviation reputation with detailed pilot profiles, rankings, and achievement badges. Showcase your flight hours, aircraft mastery, and community contributions.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-vibrant-community-hub-interface-showin-1772796625701-90fa41b8.png?_wi=2", - imageAlt: "Pilot community profiles interface" + id: "01", title: "Pilot Profiles & Rankings", description: "Build your aviation reputation with detailed pilot profiles, rankings, and achievement badges. Showcase your flight hours, aircraft mastery, and community contributions.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-vibrant-community-hub-interface-showin-1772796625701-90fa41b8.png", imageAlt: "Pilot community profiles interface" }, { - id: "02", - title: "Virtual Airlines Network", - description: "Join or create virtual airlines with your friends. Organize group flights, manage airline operations, and compete in community events with your crew.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-modern-flight-simulator-cockpit-interf-1772796625572-2b8f8af5.png?_wi=2", - imageAlt: "Virtual airline management system" + id: "02", title: "Virtual Airlines Network", description: "Join or create virtual airlines with your friends. Organize group flights, manage airline operations, and compete in community events with your crew.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-modern-flight-simulator-cockpit-interf-1772796625572-2b8f8af5.png", imageAlt: "Virtual airline management system" }, { - id: "03", - title: "Group Flight Events", - description: "Participate in scheduled group flights, challenges, and tournaments. Fly together with pilots from around the world and earn exclusive community rewards.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-modern-gallery-interface-displaying-be-1772796626406-76c3310f.png?_wi=2", - imageAlt: "Flight event gallery and screenshots" + id: "03", title: "Group Flight Events", description: "Participate in scheduled group flights, challenges, and tournaments. Fly together with pilots from around the world and earn exclusive community rewards.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-modern-gallery-interface-displaying-be-1772796626406-76c3310f.png", imageAlt: "Flight event gallery and screenshots" }, { - id: "04", - title: "Real-time Flight Tracking", - description: "Watch friends and pilots live as they fly. Real-time radar, performance metrics, and instant notifications keep you connected to the action.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-modern-aviation-news-dashboard-interfa-1772796626457-b7e13ed8.png?_wi=2", - imageAlt: "Real-time flight tracking dashboard" + id: "04", title: "Real-time Flight Tracking", description: "Watch friends and pilots live as they fly. Real-time radar, performance metrics, and instant notifications keep you connected to the action.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-modern-aviation-news-dashboard-interfa-1772796626457-b7e13ed8.png", imageAlt: "Real-time flight tracking dashboard" } ]} textboxLayout="default" @@ -119,52 +101,22 @@ export default function CommunityPage() { useInvertedBackground={false} testimonials={[ { - id: "1", - name: "Captain Alex Rivera", - handle: "@CaptainRivera", - testimonial: "My Wings 2025 has become my go-to platform for virtual flying. The community is welcoming, supportive, and truly passionate about aviation.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-photo-of-a-man-in--1772796624895-a19206ce.png?_wi=2", - imageAlt: "Captain Alex Rivera" + id: "1", name: "Captain Alex Rivera", handle: "@CaptainRivera", testimonial: "My Wings 2025 has become my go-to platform for virtual flying. The community is welcoming, supportive, and truly passionate about aviation.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-photo-of-a-man-in--1772796624895-a19206ce.png", imageAlt: "Captain Alex Rivera" }, { - id: "2", - name: "Sarah Chen", - handle: "@SarahTheFlyer", - testimonial: "I've been part of three virtual airlines now, and the connections I've made here are incredible. This is where real pilots meet to fly together.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-a-woman-in-her--1772796624873-487e82a8.png?_wi=2", - imageAlt: "Sarah Chen" + id: "2", name: "Sarah Chen", handle: "@SarahTheFlyer", testimonial: "I've been part of three virtual airlines now, and the connections I've made here are incredible. This is where real pilots meet to fly together.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-a-woman-in-her--1772796624873-487e82a8.png", imageAlt: "Sarah Chen" }, { - id: "3", - name: "Michael Santos", - handle: "@MikeTheSkyHunter", - testimonial: "The gallery features and route sharing system have completely transformed how I experience flight simulation. Simply outstanding platform.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-a-man-in-his-35-1772796624743-02426d30.png?_wi=2", - imageAlt: "Michael Santos" + id: "3", name: "Michael Santos", handle: "@MikeTheSkyHunter", testimonial: "The gallery features and route sharing system have completely transformed how I experience flight simulation. Simply outstanding platform.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-a-man-in-his-35-1772796624743-02426d30.png", imageAlt: "Michael Santos" }, { - id: "4", - name: "Emma Thompson", - handle: "@EmmaFlies", - testimonial: "Found my virtual airline family here. The community support and shared passion for aviation is what makes My Wings 2025 special.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-a-woman-in-her--1772796625085-75a1942e.png?_wi=2", - imageAlt: "Emma Thompson" + id: "4", name: "Emma Thompson", handle: "@EmmaFlies", testimonial: "Found my virtual airline family here. The community support and shared passion for aviation is what makes My Wings 2025 special.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-a-woman-in-her--1772796625085-75a1942e.png", imageAlt: "Emma Thompson" }, { - id: "5", - name: "David Kim", - handle: "@DavidPilot", - testimonial: "The flight tracking and performance metrics help me improve as a virtual pilot. Highly recommend this community to anyone serious about flight sim.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-an-asian-man-in-1772796624931-770e231a.png?_wi=2", - imageAlt: "David Kim" + id: "5", name: "David Kim", handle: "@DavidPilot", testimonial: "The flight tracking and performance metrics help me improve as a virtual pilot. Highly recommend this community to anyone serious about flight sim.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-an-asian-man-in-1772796624931-770e231a.png", imageAlt: "David Kim" }, { - id: "6", - name: "Lisa Rodriguez", - handle: "@LisaSkybound", - testimonial: "Outstanding platform with an incredibly engaged community. My Wings 2025 is exactly what aviation enthusiasts have been waiting for.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-a-latina-woman--1772796624770-7e76cdc3.png?_wi=2", - imageAlt: "Lisa Rodriguez" + id: "6", name: "Lisa Rodriguez", handle: "@LisaSkybound", testimonial: "Outstanding platform with an incredibly engaged community. My Wings 2025 is exactly what aviation enthusiasts have been waiting for.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-a-latina-woman--1772796624770-7e76cdc3.png", imageAlt: "Lisa Rodriguez" } ]} speed={50} @@ -177,15 +129,13 @@ export default function CommunityPage() { animationType="entrance-slide" buttons={[ { - text: "Create Your Profile", - href: "/community" + text: "Create Your Profile", href: "/community" }, { - text: "Browse Pilots", - href: "/community" + text: "Browse Pilots", href: "/community" } ]} - background={{ variant: "noise" }} + background={{ variant: "plain" }} useInvertedBackground={true} /> @@ -194,12 +144,10 @@ export default function CommunityPage() { From 9b9a07ab41318e971cd865a7e2f0c7512d0de55b Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 11:33:13 +0000 Subject: [PATCH 3/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 81 +++++++++------------------------------- 1 file changed, 17 insertions(+), 64 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 6714b49..b30c782 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -7,6 +7,7 @@ import HeroOverlay from "@/components/sections/hero/HeroOverlay"; import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix"; import ContactText from "@/components/sections/contact/ContactText"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; +import { Plane } from "lucide-react"; export default function ContactPage() { const navItems = [ @@ -19,53 +20,17 @@ export default function ContactPage() { const testimonials = [ { - id: "1", - name: "Captain Alex Rivera", - handle: "@CaptainRivera", - testimonial: "My Wings 2025 has become my go-to platform for virtual flying. The community is welcoming, supportive, and truly passionate about aviation.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-photo-of-a-man-in--1772796624895-a19206ce.png?_wi=3", - imageAlt: "Captain Alex Rivera", - }, + id: "1", name: "Captain Alex Rivera", handle: "@CaptainRivera", testimonial: "My Wings 2025 has become my go-to platform for virtual flying. The community is welcoming, supportive, and truly passionate about aviation.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-photo-of-a-man-in--1772796624895-a19206ce.png", imageAlt: "Captain Alex Rivera"}, { - id: "2", - name: "Sarah Chen", - handle: "@SarahTheFlyer", - testimonial: "I've been part of three virtual airlines now, and the connections I've made here are incredible. This is where real pilots meet to fly together.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-a-woman-in-her--1772796624873-487e82a8.png?_wi=3", - imageAlt: "Sarah Chen", - }, + id: "2", name: "Sarah Chen", handle: "@SarahTheFlyer", testimonial: "I've been part of three virtual airlines now, and the connections I've made here are incredible. This is where real pilots meet to fly together.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-a-woman-in-her--1772796624873-487e82a8.png", imageAlt: "Sarah Chen"}, { - id: "3", - name: "Michael Santos", - handle: "@MikeTheSkyHunter", - testimonial: "The gallery features and route sharing system have completely transformed how I experience flight simulation. Simply outstanding platform.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-a-man-in-his-35-1772796624743-02426d30.png?_wi=3", - imageAlt: "Michael Santos", - }, + id: "3", name: "Michael Santos", handle: "@MikeTheSkyHunter", testimonial: "The gallery features and route sharing system have completely transformed how I experience flight simulation. Simply outstanding platform.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-a-man-in-his-35-1772796624743-02426d30.png", imageAlt: "Michael Santos"}, { - id: "4", - name: "Emma Thompson", - handle: "@EmmaFlies", - testimonial: "Found my virtual airline family here. The community support and shared passion for aviation is what makes My Wings 2025 special.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-a-woman-in-her--1772796625085-75a1942e.png?_wi=3", - imageAlt: "Emma Thompson", - }, + id: "4", name: "Emma Thompson", handle: "@EmmaFlies", testimonial: "Found my virtual airline family here. The community support and shared passion for aviation is what makes My Wings 2025 special.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-a-woman-in-her--1772796625085-75a1942e.png", imageAlt: "Emma Thompson"}, { - id: "5", - name: "David Kim", - handle: "@DavidPilot", - testimonial: "The flight tracking and performance metrics help me improve as a virtual pilot. Highly recommend this community to anyone serious about flight sim.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-an-asian-man-in-1772796624931-770e231a.png?_wi=3", - imageAlt: "David Kim", - }, + id: "5", name: "David Kim", handle: "@DavidPilot", testimonial: "The flight tracking and performance metrics help me improve as a virtual pilot. Highly recommend this community to anyone serious about flight sim.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-an-asian-man-in-1772796624931-770e231a.png", imageAlt: "David Kim"}, { - id: "6", - name: "Lisa Rodriguez", - handle: "@LisaSkybound", - testimonial: "Outstanding platform with an incredibly engaged community. My Wings 2025 is exactly what aviation enthusiasts have been waiting for.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-a-latina-woman--1772796624770-7e76cdc3.png?_wi=3", - imageAlt: "Lisa Rodriguez", - }, + id: "6", name: "Lisa Rodriguez", handle: "@LisaSkybound", testimonial: "Outstanding platform with an incredibly engaged community. My Wings 2025 is exactly what aviation enthusiasts have been waiting for.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-a-latina-woman--1772796624770-7e76cdc3.png", imageAlt: "Lisa Rodriguez"}, ]; return ( @@ -75,7 +40,7 @@ export default function ContactPage() { borderRadius="pill" contentWidth="medium" sizing="large" - background="noise" + background="circleGradient" cardStyle="subtle-shadow" primaryButtonStyle="flat" secondaryButtonStyle="solid" @@ -98,21 +63,17 @@ export default function ContactPage() { title="My Wings 2025 – Aviation Community" description="Fly, share and explore the world of aviation with the most vibrant flight simulator and virtual airline community" tag="Join Our Skies" - tagIcon="Plane" + tagIcon={Plane} textPosition="bottom-left" showBlur={true} showDimOverlay={false} - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-stunning-cinematic-view-of-a-commercia-1772796625376-b6098995.png?_wi=4" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-stunning-cinematic-view-of-a-commercia-1772796625376-b6098995.png" imageAlt="Airplane flying through beautiful sky with clouds" buttons={[ { - text: "Join Community", - href: "/community", - }, + text: "Join Community", href: "/community"}, { - text: "Latest Flights", - href: "/flights", - }, + text: "Latest Flights", href: "/flights"}, ]} /> @@ -138,15 +99,11 @@ export default function ContactPage() { 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} /> @@ -156,13 +113,9 @@ export default function ContactPage() { From 38f33fe36ba60ac8878fc9ae48e537075e2754ec Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 11:33:13 +0000 Subject: [PATCH 4/5] Update src/app/gallery/page.tsx --- src/app/gallery/page.tsx | 48 +++++++++++----------------------------- 1 file changed, 13 insertions(+), 35 deletions(-) diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index 372099e..209a13c 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -25,7 +25,7 @@ export default function GalleryPage() { borderRadius="pill" contentWidth="medium" sizing="large" - background="noise" + background="circleGradient" cardStyle="subtle-shadow" primaryButtonStyle="flat" secondaryButtonStyle="solid" @@ -50,16 +50,14 @@ export default function GalleryPage() { textPosition="bottom-left" showBlur={true} showDimOverlay={false} - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-stunning-cinematic-view-of-a-commercia-1772796625376-b6098995.png?_wi=3" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-stunning-cinematic-view-of-a-commercia-1772796625376-b6098995.png" imageAlt="Airplane flying through beautiful sky with clouds" buttons={[ { - text: "Browse Gallery", - href: "#gallery" + text: "Browse Gallery", href: "#gallery" }, { - text: "Upload Your Flight", - href: "#upload" + text: "Upload Your Flight", href: "#upload" } ]} /> @@ -73,32 +71,16 @@ export default function GalleryPage() { tagIcon={ImageIcon} features={[ { - id: "01", - title: "Scenic Routes & Sunsets", - description: "Experience breathtaking aerial views of the world's most beautiful routes. Sunset approaches, golden hour flights, and scenic landmarks captured by our talented community.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-modern-gallery-interface-displaying-be-1772796626406-76c3310f.png?_wi=3", - imageAlt: "Scenic flight screenshots collection" + id: "01", title: "Scenic Routes & Sunsets", description: "Experience breathtaking aerial views of the world's most beautiful routes. Sunset approaches, golden hour flights, and scenic landmarks captured by our talented community.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-modern-gallery-interface-displaying-be-1772796626406-76c3310f.png", imageAlt: "Scenic flight screenshots collection" }, { - id: "02", - title: "Aircraft Showcase", - description: "Stunning detailed shots of aircraft in flight. From regional turboprops to wide-body jets, explore the beauty of aviation through professional flight sim photography.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-modern-flight-simulator-cockpit-interf-1772796625572-2b8f8af5.png?_wi=3", - imageAlt: "Aircraft showcase and details" + id: "02", title: "Aircraft Showcase", description: "Stunning detailed shots of aircraft in flight. From regional turboprops to wide-body jets, explore the beauty of aviation through professional flight sim photography.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-modern-flight-simulator-cockpit-interf-1772796625572-2b8f8af5.png", imageAlt: "Aircraft showcase and details" }, { - id: "03", - title: "Landmark Approaches", - description: "Iconic approaches and landings at famous world airports. Capture the drama and beauty of final approaches at airports like KORD, EGLL, LFPG, and RJTT.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-vibrant-community-hub-interface-showin-1772796625701-90fa41b8.png?_wi=3", - imageAlt: "Landmark airport approaches" + id: "03", title: "Landmark Approaches", description: "Iconic approaches and landings at famous world airports. Capture the drama and beauty of final approaches at airports like KORD, EGLL, LFPG, and RJTT.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-vibrant-community-hub-interface-showin-1772796625701-90fa41b8.png", imageAlt: "Landmark airport approaches" }, { - id: "04", - title: "Weather & Atmosphere", - description: "Immerse yourself in realistic weather conditions. Thunderstorms, snow, fog, and varied atmospheric conditions create dramatic and beautiful flight moments.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-modern-aviation-news-dashboard-interfa-1772796626457-b7e13ed8.png?_wi=3", - imageAlt: "Weather and atmospheric conditions" + id: "04", title: "Weather & Atmosphere", description: "Immerse yourself in realistic weather conditions. Thunderstorms, snow, fog, and varied atmospheric conditions create dramatic and beautiful flight moments.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-modern-aviation-news-dashboard-interfa-1772796626457-b7e13ed8.png", imageAlt: "Weather and atmospheric conditions" } ]} textboxLayout="default" @@ -114,15 +96,13 @@ export default function GalleryPage() { animationType="entrance-slide" buttons={[ { - text: "Share Your Screenshots", - href: "/gallery" + text: "Share Your Screenshots", href: "/gallery" }, { - text: "View More Flights", - href: "/gallery" + text: "View More Flights", href: "/gallery" } ]} - background={{ variant: "noise" }} + background={{ variant: "plain" }} useInvertedBackground={true} /> @@ -131,12 +111,10 @@ export default function GalleryPage() { From 4c4828420f2c415e8deffea40f9b405c03856fb4 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 11:33:14 +0000 Subject: [PATCH 5/5] Update src/app/page.tsx --- src/app/page.tsx | 82 ++++++++---------------------------------------- 1 file changed, 13 insertions(+), 69 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 8ca2e77..45a0da6 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -27,7 +27,7 @@ export default function HomePage() { borderRadius="pill" contentWidth="medium" sizing="large" - background="noise" + background="circleGradient" cardStyle="subtle-shadow" primaryButtonStyle="flat" secondaryButtonStyle="solid" @@ -57,7 +57,7 @@ export default function HomePage() { textPosition="bottom-left" showBlur={true} showDimOverlay={false} - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-stunning-cinematic-view-of-a-commercia-1772796625376-b6098995.png?_wi=1" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/a-stunning-cinematic-view-of-a-commercia-1772796625376-b6098995.png" imageAlt="Airplane flying through beautiful sky with clouds" buttons={[ { text: "Join Community", href: "/" }, @@ -75,33 +75,13 @@ export default function HomePage() { 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=1", - 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=1", - imageAlt: "Gallery interface for 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 for 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=1", - 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=1", - 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" @@ -136,53 +116,17 @@ export default function HomePage() { useInvertedBackground={false} testimonials={[ { - id: "1", - name: "Captain Alex Rivera", - handle: "@CaptainRivera", - testimonial: "My Wings 2025 has become my go-to platform for virtual flying. The community is welcoming, supportive, and truly passionate about aviation.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-photo-of-a-man-in--1772796624895-a19206ce.png?_wi=1", - imageAlt: "Captain Alex Rivera", - }, + id: "1", name: "Captain Alex Rivera", handle: "@CaptainRivera", testimonial: "My Wings 2025 has become my go-to platform for virtual flying. The community is welcoming, supportive, and truly passionate about aviation.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-photo-of-a-man-in--1772796624895-a19206ce.png", imageAlt: "Captain Alex Rivera"}, { - id: "2", - name: "Sarah Chen", - handle: "@SarahTheFlyer", - testimonial: "I've been part of three virtual airlines now, and the connections I've made here are incredible. This is where real pilots meet to fly together.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-a-woman-in-her--1772796624873-487e82a8.png?_wi=1", - imageAlt: "Sarah Chen", - }, + id: "2", name: "Sarah Chen", handle: "@SarahTheFlyer", testimonial: "I've been part of three virtual airlines now, and the connections I've made here are incredible. This is where real pilots meet to fly together.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-a-woman-in-her--1772796624873-487e82a8.png", imageAlt: "Sarah Chen"}, { - id: "3", - name: "Michael Santos", - handle: "@MikeTheSkyHunter", - testimonial: "The gallery features and route sharing system have completely transformed how I experience flight simulation. Simply outstanding platform.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-a-man-in-his-35-1772796624743-02426d30.png?_wi=1", - imageAlt: "Michael Santos", - }, + id: "3", name: "Michael Santos", handle: "@MikeTheSkyHunter", testimonial: "The gallery features and route sharing system have completely transformed how I experience flight simulation. Simply outstanding platform.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-a-man-in-his-35-1772796624743-02426d30.png", imageAlt: "Michael Santos"}, { - id: "4", - name: "Emma Thompson", - handle: "@EmmaFlies", - testimonial: "Found my virtual airline family here. The community support and shared passion for aviation is what makes My Wings 2025 special.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-a-woman-in-her--1772796625085-75a1942e.png?_wi=1", - imageAlt: "Emma Thompson", - }, + id: "4", name: "Emma Thompson", handle: "@EmmaFlies", testimonial: "Found my virtual airline family here. The community support and shared passion for aviation is what makes My Wings 2025 special.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-a-woman-in-her--1772796625085-75a1942e.png", imageAlt: "Emma Thompson"}, { - id: "5", - name: "David Kim", - handle: "@DavidPilot", - testimonial: "The flight tracking and performance metrics help me improve as a virtual pilot. Highly recommend this community to anyone serious about flight sim.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-an-asian-man-in-1772796624931-770e231a.png?_wi=1", - imageAlt: "David Kim", - }, + id: "5", name: "David Kim", handle: "@DavidPilot", testimonial: "The flight tracking and performance metrics help me improve as a virtual pilot. Highly recommend this community to anyone serious about flight sim.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-an-asian-man-in-1772796624931-770e231a.png", imageAlt: "David Kim"}, { - id: "6", - name: "Lisa Rodriguez", - handle: "@LisaSkybound", - testimonial: "Outstanding platform with an incredibly engaged community. My Wings 2025 is exactly what aviation enthusiasts have been waiting for.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-a-latina-woman--1772796624770-7e76cdc3.png?_wi=1", - imageAlt: "Lisa Rodriguez", - }, + id: "6", name: "Lisa Rodriguez", handle: "@LisaSkybound", testimonial: "Outstanding platform with an incredibly engaged community. My Wings 2025 is exactly what aviation enthusiasts have been waiting for.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZOKYVQEv29x5TDOnVaCy7ceUF/professional-portrait-of-a-latina-woman--1772796624770-7e76cdc3.png", imageAlt: "Lisa Rodriguez"}, ]} speed={50} /> @@ -197,7 +141,7 @@ export default function HomePage() { { text: "Join Community Now", href: "/" }, { text: "Explore Gallery", href: "/" }, ]} - background={{ variant: "noise" }} + background={{ variant: "plain" }} useInvertedBackground={true} />