fix navigation

This commit is contained in:
priyanshuvish
2025-08-28 17:05:42 +05:30
parent 7136f1b3e6
commit a2f4dc1a3e
4 changed files with 239 additions and 54 deletions

View File

@@ -55,6 +55,8 @@ export default function App() {
className="min-h-screen main-content"
style={{ backgroundColor: '#FFFFFF' }}
>
<Navigation />
<Routes>
{/* Home Page */}
<Route path="/" element={<HomePage />} />
@@ -120,6 +122,8 @@ export default function App() {
{/* 404 Page */}
<Route path="*" element={<NotFound />} />
</Routes>
<Footer />
{/* Add AIChatbot to all pages */}
<AIChatbot />
@@ -133,7 +137,6 @@ export default function App() {
function HomePage() {
return (
<>
<Navigation />
<HeroSection />
<StatsSection />
<LogosSection />
@@ -144,7 +147,6 @@ function HomePage() {
<InsightsSection />
<WhitepapersSection />
<CTABannerSection />
<Footer />
</>
);
}