diff --git a/src/app/page.tsx b/src/app/page.tsx index 07a01d9..a4ab4d7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,3 +1,152 @@ export default function Home() { - return (
); + return ( +
+ {/* Header */} +
+
+
+ + + + +

Uber Eats

+
+
+ + +
+
+
+ + {/* Hero Section */} +
+
+
+
+

Order food to your door

+ + {/* Search Bar */} +
+
+ + +
+
+
+
+
+
+ + {/* Categories Section */} +
+
+

Explore by category

+
+ {['Pizza', 'Burgers', 'Sushi', 'Chinese', 'Mexican', 'Dessert', 'Italian', 'Healthy', 'Breakfast', 'Indian', 'Thai', 'Fast Food'].map((category, index) => ( +
+
+

{category}

+
+ ))} +
+
+
+ + {/* Restaurants Section */} +
+
+

Popular restaurants near you

+
+ {[1, 2, 3, 4, 5, 6].map((item) => ( +
+
+
+ 25-40 min +
+
+
+
+

Restaurant Name {item}

+
4.8
+
+

$$ • Cuisine Type

+

1.2 mi • $1.99 delivery fee

+
+
+ ))} +
+
+
+ + {/* App Download Section */} +
+
+
+
+

Order with the Uber Eats app

+

Get the best food delivery experience with the app. Available on iOS and Android.

+
+ + +
+
+
+
+
+
+
+
+ + {/* Footer */} + +
+ ); }