import React from 'react'; import { Bell, Smartphone, Laptop, Headphones, Watch, Home, Grid, Search, ShoppingCart, User } from 'lucide-react'; const HomeScreen = () => { return (
{/* Header */}

GizmoMart

{/* Main Content */}
{/* Hero Section */}
Featured Gadget

New iPhone 15 Pro

Experience the future of smartphones

{/* Flash Sale Section */}

Flash Sale

Ends in 05:23:45
{/* Featured Categories */}

Featured Categories

} title="Smartphones" subtitle="Latest Models" /> } title="Laptops" subtitle="Power & Performance" /> } title="Audio" subtitle="Premium Sound" /> } title="Wearables" subtitle="Smart Devices" />
{/* New Arrivals */}

New Arrivals

Gaming Laptop

Razer Blade 15

Gaming Laptop with RTX 4080

$2,499
{/* Bottom Navigation */}
); }; const FlashSaleItem = ({ image, title, subtitle, price, originalPrice }) => (
{title}

{title}

{subtitle}

${price} ${originalPrice}
); const CategoryCard = ({ icon, title, subtitle }) => (
{icon}

{title}

{subtitle}

); const NavItem = ({ icon, label, active }) => ( {icon} {label} ); export default HomeScreen;