--- /** * MOREMINIMORE - UtilityBar (from v6-utility) * Extracted from Desktop/moreminomore-mockup-v7-5.html lines 571-589 * * Top info bar — phone + clock + date + mode indicator + email + THEME TOGGLE * Phone/email pulled from src/content/settings/site.md (single source of truth) * * Clock/date are updated by fx-animations.ts → fxClock() (id="fx-time", id="fx-date") * Theme toggle: id="fx-theme-toggle" — click flips data-theme on + saves to localStorage */ import { getEntry } from 'astro:content'; import type { CollectionEntry } from 'astro:content'; const site = (await getEntry('settings', 'site')) as CollectionEntry<'settings'>; const phone = site?.data?.phone ?? '080-995-5945'; const email = site?.data?.email ?? 'contact@moreminimore.com'; ---