Free
Navbar
PayMe Navbar
A navbar block extracted from the PayMe template, available in Tailwind CSS, Bootstrap, DaisyUI, and Material Design.
0
17
A navbar block extracted from the PayMe template, available in Tailwind CSS, Bootstrap, DaisyUI, and Material Design.
<!DOCTYPE html>
<html lang="en">
<head>
<script>
window.FontAwesomeConfig = {
autoReplaceSvg: 'nest'
};
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/js/all.min.js" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<meta charset="utf-8">
<title>PayMe Navbar | Tailwind CSS UI Block</title>
<meta content="A navbar block extracted from the PayMe template, available in Tailwind CSS, Bootstrap, DaisyUI, and Material Design." name="description">
<meta name="keywords" content="PayMe, Tailwind CSS template, HTML website template, fintech website template, financial dashboard, digital payments, responsive landing page">
<meta name="author" content="Let's templates">
<link rel="canonical" href="">
<meta property="og:type" content="product">
<meta property="og:site_name" content="Let's templates">
<meta property="og:locale" content="en_US">
<meta property="og:url" content="">
<meta property="og:title" content="PayMe | Tailwind CSS Fintech Dashboard Template">
<meta property="og:description" content="A modern Tailwind CSS fintech website template for digital payments, personal finance tools, account management, and financial dashboards.">
<meta property="og:image" content="">
<meta property="og:image:alt" content="PayMe template preview">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="">
<meta name="twitter:title" content="PayMe | Tailwind CSS Fintech Dashboard Template">
<meta name="twitter:description" content="A modern Tailwind CSS fintech website template for digital payments, personal finance tools, account management, and financial dashboards.">
<meta name="twitter:image" content="">
<meta name="twitter:image:alt" content="PayMe template preview">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: ['"Plus Jakarta Sans"', 'sans-serif'],
},
colors: {
// Light-mode re-tune: same violet identity, but layered over a soft
// lavender-tinted light base. Surfaces stay near-white with hairline
// borders; text becomes deep eggplant instead of pure black.
c0: '#ffffff', // raised panel / card surface
c1: '#fcfbfe', // elevated card tint
c2: '#f5f3ff', // page base (lavender-tinted)
c3: '#faf5ff', // secondary base
c4: '#e8e4f5', // hairline border (light)
ink: '#1a1523', // primary text (was near-black)
muted: '#5d5870', // muted text (AA on light)
accent: '#6D28D9', // brand violet accent (active/indicators only)
},
keyframes: {
marquee: {
'0%': { transform: 'translateX(0)' },
'100%': { transform: 'translateX(-50%)' },
}
},
animation: {
marquee: 'marquee 30s linear infinite',
}
}
}
}
</script>
<style type="text/css">
body { font-family: 'Plus Jakarta Sans', sans-serif; }
.punchout-text {
color: transparent;
-webkit-text-fill-color: transparent;
-webkit-text-stroke: 1px #c4b5fd;
font-weight: 300;
}
.nav-link::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 0;
height: 1px;
background-color: currentColor;
transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }
.nav-link.is-active { color: #1a1523; }
.nav-link .nav-dot { display: none; }
.nav-link.is-active .nav-dot { display: inline-block; }
</style>
</head>
<body class="bg-gradient-to-b from-c2 to-c3 text-ink overflow-x-hidden">
<!-- block:start navbar -->
<header id="header" class="fixed top-0 left-0 w-full z-50 px-6 py-4">
<nav class="max-w-[1440px] mx-auto bg-c0/80 backdrop-blur-md border border-c4 rounded-full px-6 py-3 flex items-center justify-between shadow-sm">
<div class="flex items-center gap-8">
<a href="#" class="flex items-center gap-2">
<span class="w-8 h-8 bg-accent rounded-lg flex items-center justify-center text-white font-bold text-xl">P</span>
<span class="text-xl font-bold tracking-tighter">PayMe</span>
</a>
<div class="hidden md:flex items-center gap-6 text-sm font-medium text-muted">
<a href="#" class="nav-link relative pb-1 flex items-center gap-2 is-active" aria-current="page">
Home <span class="nav-dot w-1.5 h-1.5 bg-accent rounded-full animate-pulse"></span>
</a>
<a href="#features" class="nav-link relative pb-1 flex items-center gap-2">
Features <span class="nav-dot w-1.5 h-1.5 bg-accent rounded-full animate-pulse"></span>
</a>
<a href="#integration" class="nav-link relative pb-1 flex items-center gap-2">
Integration <span class="nav-dot w-1.5 h-1.5 bg-accent rounded-full animate-pulse"></span>
</a>
<a href="#price" class="nav-link relative pb-1 flex items-center gap-2">
Price <span class="nav-dot w-1.5 h-1.5 bg-accent rounded-full animate-pulse"></span>
</a>
<a href="#" class="nav-link relative pb-1 flex items-center gap-2">
Blog <span class="nav-dot w-1.5 h-1.5 bg-accent rounded-full animate-pulse"></span>
</a>
<a href="#" class="nav-link relative pb-1 flex items-center gap-2">
Contact us <span class="nav-dot w-1.5 h-1.5 bg-accent rounded-full animate-pulse"></span>
</a>
</div>
</div>
<button class="bg-ink hover:bg-gray-800 text-white px-6 py-2.5 rounded-lg text-sm font-semibold transition-all duration-300">
Sign in
</button>
</nav>
</header>
<!-- block:end navbar -->
<script>
(function () {
var links = document.querySelectorAll(".nav-link");
function setActive(activeLink) {
links.forEach(function (link) {
var isActive = link === activeLink;
link.classList.toggle("is-active", isActive);
if (isActive) {
link.setAttribute("aria-current", "page");
} else {
link.removeAttribute("aria-current");
}
});
}
links.forEach(function (link) {
link.addEventListener("click", function () {
setActive(link);
});
});
})();
</script>
</body>
</html>
Free
Business
Unlock the entire library of premium templates and blocks. Renews automatically, cancel anytime.