diff --git a/src/components/Marquee.astro b/src/components/Marquee.astro new file mode 100644 index 0000000..c36cf40 --- /dev/null +++ b/src/components/Marquee.astro @@ -0,0 +1,30 @@ +--- +/** + * MOREMINIMORE - Marquee (from v6-marquee) + * Extracted from Desktop/moreminomore-mockup-v7-5.html lines 590-609 + * + * Log ticker — animates horizontally (marquee 40s linear infinite in fx-system.css) + * Content is hardcoded ticker entries (not dynamic) — same as v7-5 design + * + * Duplicate content to achieve seamless loop (track is rendered twice) + */ +const tickerEntries = [ + { ts: '[2026-06-13]', text: '$ build/deploy ✓' }, + { ts: '[log]', text: 'Dataroot +373% Impression ✓' }, + { ts: '[2026-06-13]', text: '$ contact/free 30 min ✓' }, + { ts: '[log]', text: '9 case studies, 0 fabricated ✓' }, +]; +--- + +