From cc13ce503a4e1cb57b9a296e2045d11b6d77325f Mon Sep 17 00:00:00 2001 From: hitchhooker Date: Fri, 13 Dec 2024 11:55:36 +0700 Subject: [PATCH] update page --- src/components/Nav.jsx | 12 +++++++----- src/components/SectionsHeroSection.jsx | 2 +- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/src/components/Nav.jsx b/src/components/Nav.jsx index b1b7295..39c2c49 100644 --- a/src/components/Nav.jsx +++ b/src/components/Nav.jsx @@ -6,10 +6,9 @@ export default function Nav() { const [navIsOpen, setNavIsOpen] = createSignal(false); const navItems = [ - { id: 1, text: "Home", href: "/" }, - { id: 2, text: "Docs", href: "/docs" }, - { id: 3, text: "Transfer", href: "/transfer" }, - { id: 4, text: "GitHub", href: "https://github.com/rotkonetworks/swissh" } + { id: 1, text: "Home", href: "/", enabled: true }, + { id: 2, text: "About", href: "/about", enabled: true }, + { id: 3, text: "Docs", href: "/docs", enabled: false }, ]; return ( @@ -27,15 +26,18 @@ export default function Nav() { {/* Desktop Navigation */}