A
Anonymous

Game Rental Platform - Copy this Html, Tailwind Component to your project

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Game Shop Rental</title> <script src="https://cdn.tailwindcss.com"></script> <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet"> </head> <body class="bg-gray-100"> <nav class="bg-gray-900 text-white p-4"> <div class="container mx-auto flex justify-between items-center"> <div class="flex items-center space-x-8"> <h1 class="text-2xl font-bold">GameRent</h1> <div class="hidden md:flex space-x-4"> <a href="#" class="hover:text-blue-400">Home</a> <a href="#" class="hover:text-blue-400">Browse</a> <a href="#" class="hover:text-blue-400">Dashboard</a> </div> </div> <div class="flex items-center space-x-4"> <button class="bg-blue-600 px-4 py-2 rounded-lg hover:bg-blue-700">Login</button> <button class="bg-green-600 px-4 py-2 rounded-lg hover:bg-green-700">Register</button> </div> </div> </nav> <main class="container mx-auto p-4"> <section class="mb-12"> <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"> <div class="bg-white rounded-xl shadow-lg overflow-hidden transform hover:scale-105 transition duration-300"> <img src="https://images.unsplash.com/photo-1511512578047-dfb367046420" alt="Featured Game 1" class="w-full h-48 object-cover"> <div class="p-4"> <h3 class="font-bold text-xl mb-2">Racing Extreme</h3> <p class="text-gray-600">Experience high-speed thrills</p> <div class="mt-4 flex justify-between items-center"> <span class="text-blue-600 font-bold">$5.99/day</span> <button class="bg-blue-600 text-white px-4 py-2 rounded-lg hover:bg-blue-700">Rent Now</button> </div> </div> </div> <div class="bg-white rounded-xl shadow-lg overflow-hidden transform hover:scale-105 transition duration-300"> <img src="https://images.unsplash.com/photo-1542751371-adc38448a05e" alt="Featured Game 2" class="w-full h-48 object-cover"> <div class="p-4"> <h3 class="font-bold text-xl mb-2">Space Explorer</h3> <p class="text-gray-600">Journey through the cosmos</p> <div class="mt-4 flex justify-between items-center"> <span class="text-blue-600 font-bold">$4.99/day</span> <button class="bg-blue-600 text-white px-4 py-2 rounded-lg hover:bg-blue-700">Rent Now</button> </div> </div> </div> <div class="bg-white rounded-xl shadow-lg overflow-hidden transform hover:scale-105 transition duration-300"> <img src="https://images.unsplash.com/photo-1509198397868-475647b2a1e5" alt="Featured Game 3" class="w-full h-48 object-cover"> <div class="p-4"> <h3 class="font-bold text-xl mb-2">Fantasy Quest</h3> <p class="text-gray-600">Epic medieval adventure</p> <div class="mt-4 flex justify-between items-center"> <span class="text-blue-600 font-bold">$6.99/day</span> <button class="bg-blue-600 text-white px-4 py-2 rounded-lg hover:bg-blue-700">Rent Now</button> </div> </div> </div> </div> </section> <section class="mb-12 bg-white rounded-xl p-6 shadow-lg"> <h2 class="text-2xl font-bold mb-6">Theme Selection</h2> <div class="grid grid-cols-2 md:grid-cols-4 gap-4"> <button class="p-4 border-2 border-blue-600 rounded-lg hover:bg-blue-50">Classic</button> <button class="p-4 border-2 border-gray-800 rounded-lg hover:bg-gray-50">Dark Mode</button> <button class="p-4 border-2 border-purple-600 rounded-lg hover:bg-purple-50">Neon</button> <button class="p-4 border-2 border-green-600 rounded-lg hover:bg-green-50">Nature</button> </div> </section> <section class="grid md:grid-cols-2 gap-6"> <div class="bg-white rounded-xl p-6 shadow-lg"> <h2 class="text-2xl font-bold mb-6">Quick Stats</h2> <div class="grid grid-cols-2 gap-4"> <div class="p-4 bg-blue-100 rounded-lg"> <h3 class="font-bold text-lg">Active Rentals</h3> <p class="text-3xl font-bold text-blue-600">24</p> </div> <div class="p-4 bg-green-100 rounded-lg"> <h3 class="font-bold text-lg">Revenue</h3> <p class="text-3xl font-bold text-green-600">$1,234</p> </div> </div> </div> <div class="bg-white rounded-xl p-6 shadow-lg"> <h2 class="text-2xl font-bold mb-6">Recent Activity</h2> <div class="space-y-4"> <div class="flex items-center justify-between p-2 hover:bg-gray-50 rounded"> <span>New rental: Racing Extreme</span> <span class="text-gray-500">2 mins ago</span> </div> <div class="flex items-center justify-between p-2 hover:bg-gray-50 rounded"> <span>Payment received: Space Explorer</span> <span class="text-gray-500">5 mins ago</span> </div> </div> </div> </section> </main> <footer class="bg-gray-900 text-white mt-12 py-8"> <div class="container mx-auto px-4"> <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> <div> <h3 class="text-xl font-bold mb-4">About Us</h3> <p class="text-gray-400">Your premier destination for game rentals.</p> </div> <div> <h3 class="text-xl font-bold mb-4">Quick Links</h3> <ul class="space-y-2"> <li><a href="#" class="text-gray-400 hover:text-white">Terms of Service</a></li> <li><a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a></li> <li><a href="#" class="text-gray-400 hover:text-white">Contact Us</a></li> </ul> </div> <div> <h3 class="text-xl font-bold mb-4">Connect With Us</h3> <div class="flex space-x-4"> <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook"></i></a> <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a> <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a> </div> </div> </div> </div> </footer> </body> </html> tôi thấy cái này ok đó, dự vào nó thiết kế cho tôi 1 vài giao diện nữa, giao diện chi tiết mẫu shop game và trang đăng ký đăng nhập, và phải có giao diện cho mobile và có menu mở siderbar nữa

Prompt

About

Game Rental Platform - Create a stunning game rental shop with account registration, login, management pages, and payment options, bui. Get component free!

Share

Last updated 1 month ago