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;
+ }
+}