Update src/app/page.tsx

This commit is contained in:
2026-02-17 17:15:41 +00:00
parent dd87203262
commit f866f4edc4

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
@@ -31,7 +31,7 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
brandName="Follow Trade"
navItems={[
{ name: "Home", id: "hero" },
{ name: "Home", id: "/" },
{ name: "About", id: "about" },
{ name: "Features", id: "features" },
{ name: "Pricing", id: "pricing" },
@@ -307,4 +307,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}