'use client'; import { CONTACT_LINKS } from '$shared/lib'; import { Button } from '$shared/ui'; /** * Fixed bottom utility bar with contact info and CV download. */ export function UtilityBar() { /** * Handles CV download action. */ function handleDownloadCV() { console.log('Downloading CV...'); } return (
Contact {CONTACT_LINKS.email}
); }