Merge version_1 into main #2

Merged
bender merged 1 commits from version_1 into main 2026-04-05 00:15:51 +00:00

View File

@@ -27,26 +27,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Book Flight",
id: "/book",
},
{
name: "Fleet",
id: "/fleet",
},
{
name: "Careers",
id: "/careers",
},
{
name: "Community",
id: "/community",
},
{ name: "Home", id: "/" },
{ name: "Book Flight", id: "/book" },
{ name: "Fleet", id: "/fleet" },
{ name: "Careers", id: "/careers" },
{ name: "Community", id: "/community" },
]}
brandName="Crown Airlines"
/>
@@ -59,49 +44,25 @@ export default function LandingPage() {
useInvertedBackground={false}
features={[
{
title: "Join Game",
description: "Access the airport server via our main game link.",
icon: Crown,
title: "Join Game", description: "Access the airport server via our main game link.", icon: Crown,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/travel-still-life-pack-flat-lay_23-2148837351.jpg?_wi=3",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/high-tech-futuristic-urban-travel-people_23-2151160525.jpg?_wi=1",
},
{ imageSrc: "http://img.b2bpic.net/free-photo/travel-still-life-pack-flat-lay_23-2148837351.jpg" },
{ imageSrc: "http://img.b2bpic.net/free-photo/high-tech-futuristic-urban-travel-people_23-2151160525.jpg" },
],
imageSrc: "http://img.b2bpic.net/free-photo/travel-still-life-pack-flat-lay_23-2148837351.jpg?_wi=4",
imageAlt: "luxury private jet night sky",
},
{
title: "Check-In",
description: "Clear security and verify your boarding pass.",
icon: CreditCard,
title: "Check-In", description: "Clear security and verify your boarding pass.", icon: CreditCard,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-flight-attendants-with-baggage_23-2150312753.jpg?_wi=3",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/tourism-flight-stratosphere-scenic-cloud_1232-3816.jpg?_wi=1",
},
{ imageSrc: "http://img.b2bpic.net/free-photo/full-shot-flight-attendants-with-baggage_23-2150312753.jpg" },
{ imageSrc: "http://img.b2bpic.net/free-photo/tourism-flight-stratosphere-scenic-cloud_1232-3816.jpg" },
],
imageSrc: "http://img.b2bpic.net/free-photo/high-tech-futuristic-urban-travel-people_23-2151160525.jpg?_wi=2",
imageAlt: "luxury airplane cabin interior",
},
{
title: "Boarding",
description: "Wait in our elite lounge until your gate is ready.",
icon: LogIn,
title: "Boarding", description: "Wait in our elite lounge until your gate is ready.", icon: LogIn,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/high-tech-futuristic-urban-travel-people_23-2151160525.jpg?_wi=3",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/travel-still-life-pack-flat-lay_23-2148837351.jpg?_wi=5",
},
{ imageSrc: "http://img.b2bpic.net/free-photo/high-tech-futuristic-urban-travel-people_23-2151160525.jpg" },
{ imageSrc: "http://img.b2bpic.net/free-photo/travel-still-life-pack-flat-lay_23-2148837351.jpg" },
],
imageSrc: "http://img.b2bpic.net/free-photo/tourism-flight-stratosphere-scenic-cloud_1232-3816.jpg?_wi=2",
imageAlt: "modern airliner livery night",
},
]}
title="Booking Your Journey"
@@ -112,13 +73,11 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactSplit
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
tag="Book Now"
title="Reserve Your Seat"
description="Fill out the form to get your flight details sent to your inbox."
imageSrc="http://img.b2bpic.net/free-photo/travel-still-life-pack-flat-lay_23-2148837351.jpg?_wi=6"
imageSrc="http://img.b2bpic.net/free-photo/travel-still-life-pack-flat-lay_23-2148837351.jpg"
mediaAnimation="slide-up"
/>
</div>
@@ -130,12 +89,9 @@ export default function LandingPage() {
title="Premium Booking"
description="Our booking system is streamlined for quick access."
bulletPoints={[
{
title: "Fast",
description: "Instant confirmation.",
},
{ title: "Fast", description: "Instant confirmation." },
]}
imageSrc="http://img.b2bpic.net/free-photo/high-tech-futuristic-urban-travel-people_23-2151160525.jpg?_wi=4"
imageSrc="http://img.b2bpic.net/free-photo/high-tech-futuristic-urban-travel-people_23-2151160525.jpg"
mediaAnimation="slide-up"
/>
</div>
@@ -144,42 +100,21 @@ export default function LandingPage() {
<FooterBase
columns={[
{
title: "Navigate",
items: [
{
label: "Home",
href: "/",
},
{
label: "Book",
href: "/book",
},
title: "Navigate", items: [
{ label: "Home", href: "/" },
{ label: "Book", href: "/book" },
],
},
{
title: "Fleet",
items: [
{
label: "Regional",
href: "/fleet",
},
{
label: "Luxury",
href: "/fleet",
},
title: "Fleet", items: [
{ label: "Regional", href: "/fleet" },
{ label: "Luxury", href: "/fleet" },
],
},
{
title: "Company",
items: [
{
label: "Careers",
href: "/careers",
},
{
label: "Discord",
href: "/community",
},
title: "Company", items: [
{ label: "Careers", href: "/careers" },
{ label: "Discord", href: "/community" },
],
},
]}