This commit is contained in:
2025-08-22 14:11:18 -05:00
commit 3e9ca1a146
88 changed files with 14387 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
export default function StickyEmergencyRibbon() {
return (
<div
aria-label="24/7 emergency notice"
className="w-full bg-brand-danger text-white text-sm text-center py-3"
>
<div className="flex items-center justify-center gap-2">
<span>🚨</span>
<span className="font-semibold">
24/7 Emergency Electrician Average response under 60 minutes in Corpus Christi
</span>
<span></span>
</div>
</div>
);
}