From e68002bd61d9248ec39d08985aa95c34e7dc0bf0 Mon Sep 17 00:00:00 2001 From: Surjith S M Date: Wed, 4 Oct 2023 21:45:17 +0530 Subject: [PATCH] promote pro --- src/components/navbar/navbar.astro | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) 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 + + )}
  • )}