import React from 'react';
import { Bell, Smartphone, Laptop, Headphones, Watch, Home, Grid, Search, ShoppingCart, User } from 'lucide-react';
const HomeScreen = () => {
return (
{/* Header */}
{/* Main Content */}
{/* Hero Section */}
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
Razer Blade 15
Gaming Laptop with RTX 4080
$2,499
{/* Bottom Navigation */}
);
};
const FlashSaleItem = ({ image, title, subtitle, price, originalPrice }) => (
{title}
{subtitle}
${price}
${originalPrice}
);
const CategoryCard = ({ icon, title, subtitle }) => (
{icon}
{title}
{subtitle}
);
const NavItem = ({ icon, label, active }) => (
{icon}
{label}
);
export default HomeScreen;