promote pro

This commit is contained in:
Surjith S M
2023-10-04 21:45:17 +05:30
parent 420edd1a75
commit e68002bd61

View File

@@ -31,6 +31,11 @@ const menuitems = [
title: "Contact", title: "Contact",
path: "/contact", path: "/contact",
}, },
{
title: "Pro Version",
badge: true,
path: "https://astroship-pro.web3templates.com/",
},
]; ];
--- ---
@@ -64,8 +69,13 @@ const menuitems = [
<li> <li>
<a <a
href={item.path} href={item.path}
class="flex lg:px-3 py-2 text-gray-600 hover:text-gray-900"> class="flex lg:px-3 py-2 items-center text-gray-600 hover:text-gray-900">
{item.title} <span> {item.title}</span>
{item.badge && (
<span class="ml-1 px-2 py-0.5 text-[10px] animate-pulse font-semibold uppercase text-white bg-indigo-600 rounded-full">
New
</span>
)}
</a> </a>
</li> </li>
)} )}