diff --git a/src/components/mobile-nav/settings-sheet.tsx b/src/components/mobile-nav/settings-sheet.tsx index 6b5c455..2854996 100644 --- a/src/components/mobile-nav/settings-sheet.tsx +++ b/src/components/mobile-nav/settings-sheet.tsx @@ -5,10 +5,10 @@ import { applyTheme, getStoredThemeId } from "@/lib/themes/engine"; import { ANIMATION_IDS, ANIMATION_LABELS, type AnimationId } from "@/lib/animations"; const footerLinks = [ - { href: "mailto:contact@timmypidashev.dev", label: "Contact", color: "text-green" }, - { href: "https://github.com/timmypidashev", label: "Github", color: "text-yellow" }, - { href: "https://www.linkedin.com/in/timothy-pidashev-4353812b8", label: "LinkedIn", color: "text-blue" }, - { href: "https://github.com/timmypidashev/web", label: "Source", color: "text-purple" }, + { href: "mailto:contact@timmypidashev.dev", label: "Contact", color: "text-green", activeBg: "bg-green/15", activeBorder: "border-green/40" }, + { href: "https://github.com/timmypidashev", label: "Github", color: "text-yellow", activeBg: "bg-yellow/15", activeBorder: "border-yellow/40" }, + { href: "https://www.linkedin.com/in/timothy-pidashev-4353812b8", label: "LinkedIn", color: "text-blue", activeBg: "bg-blue/15", activeBorder: "border-blue/40" }, + { href: "https://github.com/timmypidashev/web", label: "Source", color: "text-purple", activeBg: "bg-purple/15", activeBorder: "border-purple/40" }, ]; const animOptions = [ @@ -144,14 +144,14 @@ export function SettingsSheet({ open, onClose }: { open: boolean; onClose: () => {/* Links */}