import React from 'react'; import { Flame, FlameKindle, MapPin, Search, Plus, Sparkles, Navigation, ArrowRight, Star, ShoppingBag, Truck, Camera, MessageSquareText, Timer, Bike, Banknote, Utensils } from 'lucide-react'; function Logo({ className = "h-8" }: { className?: string }) { const [imgError, setImgError] = React.useState(false); // Fallback to text if the image is not uploaded yet if (imgError) { return ( mealno ); } return ( Mealno Logo setImgError(true)} /> ); } function Navbar() { return ( ); } function Hero() { return (
{/* Left Content */}
Dropping Soon

Your Wallet Will Thank You.
Your Stomach Will Love You.

Newtown's ultimate student cloud kitchen is dropping soon. Insane flavor, unbelievable student discounts.

{/* Countdown Box */}
05 Days
:
12 Hours
:
45 Mins
:
08 Secs
{/* Waitlist Input Row */}
e.preventDefault()}>
{/* Tiers Text */}

Waitlist Tier 1 (First 500): Free Delivery for one month.

Tier 2 (Next 1000): Priority first access. Sign up now.

{/* Right Image */}
{/* Chip on Image */}
Spicy AF
{/* Using a high-quality dark-themed burger image as placeholder */} Delicious authentic Indian Biryani with spices {/* Vignette Overlay for dark aesthetic */}
); } function StealsSection() { const steals = [ { title: "Heavy Discounts", description: "Daily flash sales and student-only pricing. Keep your ID ready.", icon: , iconBg: "bg-red-950/40 border-red-900/50" }, { title: "Fresh & Fast", description: "Cooked fresh, delivered straight to your hostel or flat before the craving dies.", icon: , iconBg: "bg-amber-950/40 border-amber-900/50" }, { title: "Zero Delivery Fees", description: "Order minimums? We don't know them. Free delivery within Newtown campus zones.", icon: , iconBg: "bg-blue-950/40 border-blue-900/50" } ]; return (

Student Steals

Because instant noodles shouldn't be your only late-night option.

{steals.map((steal, i) => (
{steal.icon}

{steal.title}

{steal.description}

))}
); } function FounderSection() { const team = [ { name: "Arnab Kapri", role: "Founder", quote: "\"Software dev by day, building your new favorite food brand by night to fix Newtown's late-night food scene.\"", img: "https://images.unsplash.com/photo-1556157382-97eda2d62296?auto=format&fit=crop&w=800&q=80" }, { name: "Alex Rivera", role: "Co-Founder & Head of Operations", quote: "\"Ensuring your late-night cravings hit your doorstep before the movie gets to the good part.\"", img: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?auto=format&fit=crop&w=800&q=80" }, { name: "Sarah Chen", role: "Co-Founder & Culinary Lead", quote: "\"Experimenting with flavors that'll make you rethink everything you know about midnight snacking.\"", img: "https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&w=800&q=80" } ]; return (
The Hustle

Built by locals, for late-night cravings.

Meet the team bringing the heat to Newtown's after-hours food scene.

{team.map((member, i) => (

{member.name}

{member.role}

{member.quote}

))}
); } function Footer() { return ( ); } export default function App() { return (
); }