Update src/app/page.tsx

This commit is contained in:
2026-05-23 12:17:17 +00:00
parent 3b930d0c6b
commit e469d3fc9b

View File

@@ -32,11 +32,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "#hero" },
{ name: "Home", id: "/" },
{ name: "Products", id: "#products" },
{ name: "Features", id: "#features" },
{ name: "FAQ", id: "#faq" },
{ name: "Contact", id: "#contact" },
{ name: "Contact", id: "/contact" },
]}
brandName="PulseGaming"
/>
@@ -184,7 +184,7 @@ export default function LandingPage() {
tag="Get In Touch"
title="Ready to Upgrade?"
description="Join our newsletter or reach out for bulk orders and support requests."
buttons={[{ text: "Contact Support", href: "#" }]}
buttons={[{ text: "Contact Support", href: "/contact" }]}
/>
</div>
@@ -201,4 +201,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}