Update src/app/page.tsx

This commit is contained in:
2026-03-03 06:52:15 +00:00
parent f5db88d61b
commit 18033d12a0

View File

@@ -13,25 +13,25 @@ import { Sparkles, Zap, Award, TrendingUp, MessageSquare, Users, Globe, Clock, H
export default function HomePage() { export default function HomePage() {
const navItems = [ const navItems = [
{ name: "Features", id: "features" }, { name: "Features", id: "/features" },
{ name: "Pricing", id: "pricing" }, { name: "Pricing", id: "/pricing" },
{ name: "About", id: "about" }, { name: "About", id: "/about" },
{ name: "FAQ", id: "faq" }, { name: "FAQ", id: "/contact" },
{ name: "Contact", id: "contact" } { name: "Contact", id: "/contact" }
]; ];
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="text-shift" defaultButtonVariant="hover-magnetic"
defaultTextAnimation="reveal-blur" defaultTextAnimation="reveal-blur"
borderRadius="soft" borderRadius="rounded"
contentWidth="small" contentWidth="mediumLarge"
sizing="largeSmall" sizing="mediumLarge"
background="circleGradient" background="none"
cardStyle="outline" cardStyle="solid"
primaryButtonStyle="flat" primaryButtonStyle="flat"
secondaryButtonStyle="solid" secondaryButtonStyle="solid"
headingFontWeight="normal" headingFontWeight="bold"
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
@@ -178,18 +178,18 @@ export default function HomePage() {
columns={[ columns={[
{ {
title: "Product", items: [ title: "Product", items: [
{ label: "Features", href: "#features" }, { label: "Features", href: "/features" },
{ label: "Pricing", href: "#pricing" }, { label: "Pricing", href: "/pricing" },
{ label: "Security", href: "#" }, { label: "Security", href: "#" },
{ label: "Roadmap", href: "#" } { label: "Roadmap", href: "#" }
] ]
}, },
{ {
title: "Company", items: [ title: "Company", items: [
{ label: "About Us", href: "#about" }, { label: "About Us", href: "/about" },
{ label: "Blog", href: "#" }, { label: "Blog", href: "#" },
{ label: "Careers", href: "#" }, { label: "Careers", href: "#" },
{ label: "Contact", href: "#contact" } { label: "Contact", href: "/contact" }
] ]
}, },
{ {