From bf3d03e11082e8b1f04bd896e6e759e40183332a Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 7 Jun 2026 20:43:21 +0000 Subject: [PATCH 1/2] Add src/app/how-it-works/page.tsx --- src/app/how-it-works/page.tsx | 126 ++++++++++++++++++++++++++++++++++ 1 file changed, 126 insertions(+) create mode 100644 src/app/how-it-works/page.tsx diff --git a/src/app/how-it-works/page.tsx b/src/app/how-it-works/page.tsx new file mode 100644 index 0000000..2fc3fdd --- /dev/null +++ b/src/app/how-it-works/page.tsx @@ -0,0 +1,126 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import ContactText from '@/components/sections/contact/ContactText'; +import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import { Facebook, Instagram, Twitter } from "lucide-react"; + +const navItems = [ + { name: "Home", id: "/" }, + { name: "How It Works", id: "/how-it-works" }, + { name: "About Us", id: "/about" }, + { name: "Our Services", id: "/our-service" }, + { name: "Challenges", id: "/#challenges" }, + { name: "Insights", id: "/#insights" } +]; + +const footerSocialLinks = [ + { + icon: Twitter, + href: "https://twitter.com/privatejetcards", ariaLabel: "Follow us on X (formerly Twitter)" + }, + { + icon: Instagram, + href: "https://instagram.com/privatejetcards", ariaLabel: "Follow us on Instagram" + }, + { + icon: Facebook, + href: "https://facebook.com/privatejetcardcomparisons", ariaLabel: "Follow us on Facebook" + } +]; + +export default function HowItWorksPage() { + return ( + + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+
+ ); +} -- 2.49.1 From 249166ca517a709c3d8de00bf5b2e2241791871b Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 7 Jun 2026 20:43:22 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 51 +++++++++++++++++++++++++----------------------- 1 file changed, 27 insertions(+), 24 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 356a6e7..9e8f3a1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,6 +13,30 @@ import SplitAbout from '@/components/sections/about/SplitAbout'; import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; import { Facebook, Instagram, Twitter } from "lucide-react"; +const navItems = [ + { name: "Home", id: "/" }, + { name: "How It Works", id: "/how-it-works" }, + { name: "About Us", id: "/about" }, + { name: "Our Services", id: "/our-service" }, + { name: "Challenges", id: "#challenges" }, + { name: "Insights", id: "#insights" } +]; + +const footerSocialLinks = [ + { + icon: Twitter, + href: "https://twitter.com/privatejetcards", ariaLabel: "Follow us on X (formerly Twitter)" + }, + { + icon: Instagram, + href: "https://instagram.com/privatejetcards", ariaLabel: "Follow us on Instagram" + }, + { + icon: Facebook, + href: "https://facebook.com/privatejetcardcomparisons", ariaLabel: "Follow us on Facebook" + } +]; + export default function LandingPage() { return ( @@ -260,17 +273,7 @@ export default function LandingPage() { logoAlt="Private Jet Card Comparisons Logo" logoText="Private Jet Card Comparisons" copyrightText="© 2024 Private Jet Card Comparisons. All rights reserved." - socialLinks={[ - { - icon: Twitter, - href: "https://twitter.com/privatejetcards", ariaLabel: "Follow us on X (formerly Twitter)"}, - { - icon: Instagram, - href: "https://instagram.com/privatejetcards", ariaLabel: "Follow us on Instagram"}, - { - icon: Facebook, - href: "https://facebook.com/privatejetcardcomparisons", ariaLabel: "Follow us on Facebook"}, - ]} + socialLinks={footerSocialLinks} /> -- 2.49.1