autoverse-exotics / index.html
Wavetype's picture
That looks like a design for a full-stack web application. Based on the uploaded diagrams, the app called https://www.Godsrods.online appears to use a client-server architecture to manage user logins, display a front-end interface, handle backend logic, and interact with a database.
67efaec verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GodsRods | Premium 3D Car Marketplace</title>
<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="https://unpkg.com/feather-icons"></script>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="components/car-card.js"></script>
</head>
<body class="bg-gray-100">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8">
<!-- Hero Section -->
<section class="hero bg-gradient-to-r from-blue-600 to-indigo-800 rounded-xl p-8 mb-12 text-white">
<div class="max-w-3xl">
<h1 class="text-4xl md:text-5xl font-bold mb-4">Discover Rare 3D Car Models</h1>
<p class="text-xl mb-6">The ultimate marketplace for premium 3D automotive assets and collectibles</p>
<div class="flex flex-wrap gap-4">
<a href="/login" class="bg-white text-blue-600 px-6 py-3 rounded-lg font-semibold hover:bg-gray-100 transition">Login</a>
<a href="/marketplace" class="border-2 border-white px-6 py-3 rounded-lg font-semibold hover:bg-white hover:text-blue-600 transition">Browse Marketplace</a>
</div>
</div>
</section>
<!-- Featured Cars -->
<section class="mb-16">
<h2 class="text-3xl font-bold mb-8 text-gray-800">Featured Listings</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<custom-car-card
title="1969 Ford Mustang Boss 429"
price="2499"
tokens="500"
image="http://static.photos/automotive/640x360/1"
model="/models/mustang.glb">
</custom-car-card>
<custom-car-card
title="2023 Porsche 911 GT3 RS"
price="3499"
tokens="700"
image="http://static.photos/automotive/640x360/2"
model="/models/porsche.glb">
</custom-car-card>
<custom-car-card
title="1970 Dodge Charger R/T"
price="2899"
tokens="600"
image="http://static.photos/automotive/640x360/3"
model="/models/charger.glb">
</custom-car-card>
</div>
</section>
<!-- How It Works -->
<section class="bg-white rounded-xl p-8 shadow-lg mb-16">
<h2 class="text-3xl font-bold mb-8 text-center text-gray-800">How GodsRods Works</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="text-center">
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i data-feather="user" class="text-blue-600"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Create Account</h3>
<p class="text-gray-600">Sign up and get your free GTR tokens to start collecting</p>
</div>
<div class="text-center">
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i data-feather="search" class="text-blue-600"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Browse Models</h3>
<p class="text-gray-600">Explore our premium collection of 3D car models</p>
</div>
<div class="text-center">
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i data-feather="shopping-cart" class="text-blue-600"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Purchase & Collect</h3>
<p class="text-gray-600">Buy with cash or GTR tokens and add to your collection</p>
</div>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script>
feather.replace();
</script>
<script src="script.js"></script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>