@php // CMS / Admin-Friendly Announcement Data Structure // Easily add, edit, or remove entries below: $announcements = [ [ 'icon' => 'fa-bolt', 'badge' => 'FLASH SALE', 'text' => 'Up to 40% OFF on Noise Canceling Headphones & Smart Gadgets', 'btn_text' => 'SHOP NOW', 'btn_url' => '/category/electronics', 'badge_color' => 'bg-amber-500 text-slate-950' ], [ 'icon' => 'fa-truck-fast', 'badge' => 'FREE DELIVERY', 'text' => 'Free Islandwide Express Delivery on All Orders Over LKR 10,000!', 'btn_text' => 'EXPLORE', 'btn_url' => '/category', 'badge_color' => 'bg-emerald-500 text-white' ], [ 'icon' => 'fa-shield-halved', 'badge' => 'WARRANTY', 'text' => '100% Genuine Products with 1-Year Local Manufacturer Warranty', 'btn_text' => 'DISCOVER', 'btn_url' => '/category/watches', 'badge_color' => 'bg-blue-500 text-white' ], [ 'icon' => 'fa-headset', 'badge' => 'HOTLINE', 'text' => 'Order Hotline: +94 11 234 5678 — 24/7 Dedicated Customer Care', 'btn_text' => 'CONTACT US', 'btn_url' => '/category', 'badge_color' => 'bg-amber-400 text-slate-950' ] ]; @endphp