From 147261868023ae0ef36e7427cf25a4c691b951b4 Mon Sep 17 00:00:00 2001 From: vickytechkey Date: Thu, 10 Sep 2026 19:47:13 +0530 Subject: [PATCH 1/6] feat: align Step 2 Business & GST page, stepper labels, and brand footer with Stitch design --- src/App.tsx | 4 +- src/components/layout/Footer.tsx | 155 +++----- src/components/layout/Header.tsx | 6 +- src/components/pages/OnboardingWizard.tsx | 456 +++++++++++++++++----- src/context/SellerContext.tsx | 8 +- 5 files changed, 422 insertions(+), 207 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index b1bdc81..4f3e283 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -8,6 +8,7 @@ import PricingPage from './components/pages/PricingPage'; import GrowBusinessPage from './components/pages/GrowBusinessPage'; import AboutPage from './components/pages/AboutPage'; import ContactPage from './components/pages/ContactPage'; +import LoginPage from './components/pages/LoginPage'; import AuthForms from './components/pages/AuthForms'; import OnboardingWizard from './components/pages/OnboardingWizard'; import DashboardLayout from './components/dashboard/DashboardLayout'; @@ -30,10 +31,11 @@ function AppRouter() { {currentPage === 'how-it-works' && } {currentPage === 'pricing' && } {currentPage === 'grow-business' && } + {currentPage === 'signup' && } {currentPage === 'profile-completion' && } {currentPage === 'about' && } {currentPage === 'contact' && } - {(currentPage === 'login' || currentPage === 'signup') && } + {currentPage === 'login' && }