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 ( + + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+
+ ); +}