From 6e2f1496b40ad22f60270ffaa6bda4e6fcca31a0 Mon Sep 17 00:00:00 2001 From: oluwafemi83 Date: Wed, 3 Jun 2026 13:10:10 +0100 Subject: [PATCH] feat: add mobile app section, how it works, updated hero and nav --- app/page.tsx | 4 + components/cta.tsx | 33 +- components/footer.tsx | 126 ++--- components/hero.tsx | 82 ++- components/how-it-works.tsx | 99 ++++ components/logo-list.tsx | 24 +- components/mobile-app.tsx | 154 ++++++ components/nav.tsx | 66 +-- package-lock.json | 1020 ++++++++++++++++++++++++++++++++++- yarn.lock | 634 ++++++++++++---------- 10 files changed, 1751 insertions(+), 491 deletions(-) create mode 100644 components/how-it-works.tsx create mode 100644 components/mobile-app.tsx diff --git a/app/page.tsx b/app/page.tsx index 3b9c101..ca69a80 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -6,6 +6,8 @@ import { CTA } from "@/components/cta"; import { Footer } from "@/components/footer"; import { Testimonial } from "@/components/testimonial"; import { Faq } from "@/components/faq"; +import { HowItWorks } from "@/components/how-it-works"; +import { MobileApp } from "@/components/mobile-app"; export default function Home() { return ( @@ -13,7 +15,9 @@ export default function Home() {