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