diff --git a/src/components/AddToCalendarButton.js b/src/components/AddToCalendarButton.js index 038775d..65fc891 100644 --- a/src/components/AddToCalendarButton.js +++ b/src/components/AddToCalendarButton.js @@ -128,7 +128,7 @@ export default function AddToCalendarButton({ {event && ( <> {/* Single Event Export Options */} -
+
Add This Event
@@ -177,7 +177,7 @@ export default function AddToCalendarButton({ {showSubscribe && ( <> {/* Subscription Options */} -
+
Calendar Feeds
@@ -187,7 +187,7 @@ export default function AddToCalendarButton({ > Subscribe to My Events -
+
Auto-syncs your RSVP'd events
@@ -198,7 +198,7 @@ export default function AddToCalendarButton({ > Download All Events -
+
One-time import of all upcoming events
@@ -206,7 +206,7 @@ export default function AddToCalendarButton({ )} {!event && !showSubscribe && ( -
+
No event selected
)} diff --git a/src/components/AdminSidebar.js b/src/components/AdminSidebar.js index 5de7d7c..ca075c3 100644 --- a/src/components/AdminSidebar.js +++ b/src/components/AdminSidebar.js @@ -211,10 +211,10 @@ const AdminSidebar = ({ isOpen, onToggle, isMobile }) => { className={` flex items-center gap-3 px-4 py-3 rounded-lg transition-all relative ${item.disabled - ? 'opacity-50 cursor-not-allowed text-var(--purple-lavender)' + ? 'opacity-50 cursor-not-allowed text-[var(--purple-lavender)]' : active - ? 'bg-var(--orange-light)/10 text-var(--orange-light)' - : 'text-var(--purple-ink) hover:bg-var(--neutral-800)/20' + ? 'bg-[var(--orange-light)]/10 text-[var(--orange-light)]' + : 'text-[var(--purple-ink)] hover:bg-[var(--neutral-800)]/20' } `} > @@ -229,7 +229,7 @@ const AdminSidebar = ({ isOpen, onToggle, isMobile }) => { <> {item.name} {item.disabled && ( - + Soon )} @@ -265,7 +265,7 @@ const AdminSidebar = ({ isOpen, onToggle, isMobile }) => { {/* Sidebar */}