Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-03-06 11:33:18 +00:00
5 changed files with 78 additions and 291 deletions

View File

@@ -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}
/>
</div>
@@ -142,13 +110,9 @@ export default function AboutPage() {
<FooterLogoReveal
logoText="My Wings 2025"
leftLink={{
text: "Privacy Policy",
href: "#",
}}
text: "Privacy Policy", href: "#"}}
rightLink={{
text: "Terms of Service",
href: "#",
}}
text: "Terms of Service", href: "#"}}
/>
</div>
</ThemeProvider>

View File

@@ -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}
/>
</div>
@@ -194,12 +144,10 @@ export default function CommunityPage() {
<FooterLogoReveal
logoText="My Wings 2025"
leftLink={{
text: "Privacy Policy",
href: "#"
text: "Privacy Policy", href: "#"
}}
rightLink={{
text: "Terms of Service",
href: "#"
text: "Terms of Service", href: "#"
}}
/>
</div>

View File

@@ -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"},
]}
/>
</div>
@@ -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}
/>
</div>
@@ -156,13 +113,9 @@ export default function ContactPage() {
<FooterLogoReveal
logoText="My Wings 2025"
leftLink={{
text: "Privacy Policy",
href: "#",
}}
text: "Privacy Policy", href: "#"}}
rightLink={{
text: "Terms of Service",
href: "#",
}}
text: "Terms of Service", href: "#"}}
/>
</div>
</ThemeProvider>

View File

@@ -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}
/>
</div>
@@ -131,12 +111,10 @@ export default function GalleryPage() {
<FooterLogoReveal
logoText="My Wings 2025"
leftLink={{
text: "Privacy Policy",
href: "#"
text: "Privacy Policy", href: "#"
}}
rightLink={{
text: "Terms of Service",
href: "#"
text: "Terms of Service", href: "#"
}}
/>
</div>

View File

@@ -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}
/>
</div>