workwave-navigator / menu.html
mrrovic's picture
its kinda not good. make it better with good animations and brownish, white theme. also add on top Fuse Cafe | Roblox and option to minimize the menu. make it REALLY GOOD and option able to sign up in site
fb99799 verified
Raw
History Blame Contribute Delete
7.16 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Menu | Fuse Cafe | Roblox</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="components/navbar.js"></script>
<script src="components/sidebar.js"></script>
</head>
<body class="bg-gray-50">
<custom-navbar></custom-navbar>
<custom-sidebar></custom-sidebar>
<main class="ml-0 md:ml-64 pt-16 px-4 min-h-screen bg-[#f9f5f0]">
<div class="max-w-6xl mx-auto py-8">
<div class="bg-white rounded-xl shadow-lg overflow-hidden p-8 mb-8 animate__animated animate__fadeIn">
<div class="flex justify-between items-center mb-8">
<h1 class="text-3xl font-bold text-[#6F4E37]">Our Menu</h1>
<a href="signup.html" class="bg-[#6F4E37] hover:bg-[#5a3c2b] text-white px-4 py-2 rounded-lg transition-all duration-300 transform hover:scale-105">
Sign Up
</a>
</div>
<!-- Coffee Section -->
<div class="mb-12">
<h2 class="text-2xl font-semibold text-[#5a3c2b] mb-6 flex items-center animate__animated animate__fadeInLeft">
<i data-feather="coffee" class="mr-2"></i> Coffee
</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 animate__animated animate__fadeIn animate__delay-1s">
<div class="bg-[#f9f5f0] rounded-lg p-6 transition-all hover:shadow-lg border border-[#e2d5c8] hover:border-[#d4b999] hover:transform hover:-translate-y-1">
<div class="flex items-center mb-3">
<div class="steam w-10 h-10 bg-[#6F4E37] rounded-full mr-3"></div>
<h3 class="text-xl font-medium text-[#5a3c2b]">Americano</h3>
</div>
<p class="text-[#5a3c2b] mb-4">Espresso, hot water</p>
<p class="text-[#6F4E37] font-bold text-lg">€2.50</p>
</div>
<div class="bg-amber-50 rounded-lg p-4 transition-all hover:shadow-md">
<h3 class="text-xl font-medium text-gray-800">Black Coffee</h3>
<p class="text-gray-600 mb-2">Brewed coffee</p>
<p class="text-amber-700 font-bold">€2.00</p>
</div>
<div class="bg-amber-50 rounded-lg p-4 transition-all hover:shadow-md">
<h3 class="text-xl font-medium text-gray-800">Cappuccino</h3>
<p class="text-gray-600 mb-2">Espresso, steamed milk, milk foam</p>
<p class="text-amber-700 font-bold">€3.00</p>
</div>
<!-- Add more coffee items here -->
</div>
</div>
<!-- Sodas Section -->
<div class="mb-12">
<h2 class="text-2xl font-semibold text-gray-700 mb-4 flex items-center">
<i data-feather="droplet" class="mr-2"></i> Sodas
</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="bg-blue-50 rounded-lg p-4 transition-all hover:shadow-md">
<h3 class="text-xl font-medium text-gray-800">Blue Raspberry Soda</h3>
<p class="text-gray-600 mb-2">Carbonated water, blue raspberry syrup</p>
<p class="text-blue-700 font-bold">€2.50</p>
</div>
<div class="bg-blue-50 rounded-lg p-4 transition-all hover:shadow-md">
<h3 class="text-xl font-medium text-gray-800">Cherry Soda</h3>
<p class="text-gray-600 mb-2">Carbonated water, cherry syrup</p>
<p class="text-blue-700 font-bold">€2.40</p>
</div>
<!-- Add more soda items here -->
</div>
</div>
<!-- Milkshakes Section -->
<div class="mb-12">
<h2 class="text-2xl font-semibold text-gray-700 mb-4 flex items-center">
<i data-feather="wind" class="mr-2"></i> Milkshakes
</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="bg-pink-50 rounded-lg p-4 transition-all hover:shadow-md">
<h3 class="text-xl font-medium text-gray-800">Strawberry Milkshake</h3>
<p class="text-gray-600 mb-2">Milk, vanilla ice cream, strawberry syrup</p>
<p class="text-pink-700 font-bold">€4.00</p>
</div>
<div class="bg-pink-50 rounded-lg p-4 transition-all hover:shadow-md">
<h3 class="text-xl font-medium text-gray-800">Chocolate Milkshake</h3>
<p class="text-gray-600 mb-2">Milk, chocolate ice cream, chocolate syrup</p>
<p class="text-pink-700 font-bold">€4.20</p>
</div>
<!-- Add more milkshake items here -->
</div>
</div>
<!-- Food Section -->
<div>
<h2 class="text-2xl font-semibold text-gray-700 mb-4 flex items-center">
<i data-feather="pie-chart" class="mr-2"></i> Food
</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="bg-green-50 rounded-lg p-4 transition-all hover:shadow-md">
<h3 class="text-xl font-medium text-gray-800">Red Velvet Cupcake</h3>
<p class="text-gray-600 mb-2">Red velvet batter, cream cheese frosting</p>
<p class="text-green-700 font-bold">€2.80</p>
</div>
<div class="bg-green-50 rounded-lg p-4 transition-all hover:shadow-md">
<h3 class="text-xl font-medium text-gray-800">Chocolate Cookie</h3>
<p class="text-gray-600 mb-2">Dough, chocolate chips</p>
<p class="text-green-700 font-bold">€1.80</p>
</div>
<!-- Add more food items here -->
</div>
</div>
</div>
</div>
</main>
<script>
feather.replace();
</script>
<script src="script.js"></script>
</body>
</html>