diff --git a/src/components/navbar/navbar.astro b/src/components/navbar/navbar.astro index 11e8264..cc47849 100644 --- a/src/components/navbar/navbar.astro +++ b/src/components/navbar/navbar.astro @@ -31,6 +31,11 @@ const menuitems = [ title: "Contact", path: "/contact", }, + { + title: "Pro Version", + badge: true, + path: "https://astroship-pro.web3templates.com/", + }, ]; --- @@ -64,8 +69,13 @@ const menuitems = [
  • - {item.title} + class="flex lg:px-3 py-2 items-center text-gray-600 hover:text-gray-900"> + {item.title} + {item.badge && ( + + New + + )}
  • )}