fix navigation
This commit is contained in:
@@ -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 />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user