Update src/app/page.tsx

This commit is contained in:
2026-02-16 10:40:20 +00:00
parent 76e2a7fa22
commit 3bcbcc2e71

View File

@@ -30,13 +30,16 @@ export default function LandingPage() {
<NavbarLayoutFloatingInline
brandName="Gus"
navItems={[
{ name: "Shop", id: "products" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "about" },
{ name: "Reviews", id: "testimonials" },
{ name: "Contact", id: "contact" }
{ name: "Contact", id: "contact" },
{ name: "Support", id: "/support" },
{ name: "Privacy", id: "/privacy" },
{ name: "Terms", id: "/terms" }
]}
button={{
text: "Shop Now", href: "#products"
text: "Shop Now", href: "/shop"
}}
/>
</div>
@@ -59,7 +62,7 @@ export default function LandingPage() {
rating={5}
ratingText="Loved by 5000+ customers"
buttons={[
{ text: "Explore Collection", href: "#products" },
{ text: "Explore Collection", href: "/shop" },
{ text: "Learn More", href: "#about" }
]}
tagAnimation="slide-up"
@@ -199,7 +202,7 @@ export default function LandingPage() {
useInvertedBackground={false}
inputPlaceholder="Enter your email"
buttonText="Subscribe"
termsText="We respect your privacy. Unsubscribe at any time. See our privacy policy."
termsText="We respect your privacy. Unsubscribe at any time. See our privacy policy and terms of service."
tagAnimation="slide-up"
/>
</div>