-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (64 loc) · 2.98 KB
/
index.html
File metadata and controls
68 lines (64 loc) · 2.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GreenSwap – Sustainable Second-Hand Marketplace</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-green-50 text-gray-800 font-sans">
<!-- Navbar -->
<header class="bg-green-600 text-white p-4 flex justify-between items-center">
<h1 class="text-2xl font-bold">🌱 GreenSwap</h1>
<nav>
<a href="#features" class="px-3 hover:underline">Features</a>
<a href="#about" class="px-3 hover:underline">About</a>
<a href="/register-page" class="px-3 hover:underline">Join</a>
<a href="/profile-page" class="px-3 hover:underline">Profile</a>
<a href="/marketplace-page" class="px-3 hover:underline">Marketplace</a>
<a href="/add-item-page" class="px-3 hover:underline">Add My Items</a>
</nav>
</header>
<!-- Hero Section -->
<section class="text-center py-16 bg-green-100">
<h2 class="text-4xl font-bold mb-4">Sustainable Second-Hand Marketplace</h2>
<p class="text-lg mb-6 max-w-2xl mx-auto">
Buy, sell, or donate items like books, clothes, gadgets, and furniture.
Earn eco-points, reduce waste, and make living affordable while protecting the planet.
</p>
<a href="/register-page" class="bg-green-600 text-white px-6 py-3 rounded-lg shadow-lg hover:bg-green-700">
Get Started
</a>
</section>
<!-- Features -->
<section id="features" class="py-12 max-w-5xl mx-auto px-6">
<h3 class="text-3xl font-semibold text-center mb-10">🌍 What GreenSwap Offers</h3>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 text-center">
<div class="p-6 bg-white rounded-xl shadow">
<h4 class="text-xl font-bold mb-2">♻ Buy, Sell & Donate</h4>
<p>Exchange items responsibly within a verified community.</p>
</div>
<div class="p-6 bg-white rounded-xl shadow">
<h4 class="text-xl font-bold mb-2">🌱 Eco-Points</h4>
<p>Earn points for every transaction and track your impact.</p>
</div>
<div class="p-6 bg-white rounded-xl shadow">
<h4 class="text-xl font-bold mb-2">📊 Carbon Tracking</h4>
<p>See how much carbon footprint you reduce by reusing items.</p>
</div>
</div>
</section>
<!-- About -->
<section id="about" class="py-12 bg-green-50 px-6 text-center">
<h3 class="text-3xl font-semibold mb-4">Why GreenSwap?</h3>
<p class="max-w-3xl mx-auto text-lg">
GreenSwap fits into the <b>circular economy</b> by breaking the cycle of “buy → use → throw.”
Instead, it helps communities reuse items, save money, and live sustainably.
</p>
</section>
<!-- Footer -->
<footer class="bg-green-600 text-white text-center py-4 mt-10">
<p>© 2025 GreenSwap. Built for Sustainability Hackathon.</p>
</footer>
</body>
</html>