Update src/app/page.tsx

This commit is contained in:
2026-03-26 04:22:19 +00:00
parent f9311b0003
commit beb40a9c0a

View File

@@ -32,17 +32,17 @@ export default function LandingPage() {
<NavbarStyleCentered
navItems={[
{
name: "Home", href: "/", id: "1"},
name: "Home", id: "/"},
{
name: "About", href: "/#about", id: "2"},
name: "About", id: "/#about"},
{
name: "Features", href: "/#features", id: "3"},
name: "Features", id: "/#features"},
{
name: "Testimonials", href: "/#testimonials", id: "4"},
name: "Testimonials", id: "/#testimonials"},
{
name: "FAQ", href: "/#faq", id: "5"},
name: "FAQ", id: "/#faq"},
{
name: "Contact", href: "/#contact", id: "6"},
name: "Contact", id: "/#contact"},
]}
button={{
text: "Get Started", href: "/#contact"}}