From 536fc821cd51e21de6f9da57b94fe3738e56bd7b Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Tue, 21 Apr 2026 13:52:02 +0300 Subject: [PATCH] Bob AI: Add an 'Active Now' tag with a green pulsing light effect to --- src/components/ui/NavbarCentered.tsx | 5 ++++- src/styles/animations.css | 11 +++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/src/components/ui/NavbarCentered.tsx b/src/components/ui/NavbarCentered.tsx index ea65ee3..40f5c7c 100644 --- a/src/components/ui/NavbarCentered.tsx +++ b/src/components/ui/NavbarCentered.tsx @@ -58,7 +58,10 @@ const NavbarCentered = ({ logo, navItems, ctaButton }: NavbarCenteredProps) => {
{logo} -
Our office coffee is 90% caffeine, 10% existential dread.
+
+ + Active Now +
diff --git a/src/styles/animations.css b/src/styles/animations.css index d39bb32..8c8f097 100644 --- a/src/styles/animations.css +++ b/src/styles/animations.css @@ -169,3 +169,14 @@ .animate-progress { animation: progress linear forwards; } + +@keyframes pulse-green { + 0%, 100% { + transform: scale(1); + opacity: 1; + } + 50% { + transform: scale(1.1); + opacity: 0.7; + } +} -- 2.49.1