-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (50 loc) · 2.44 KB
/
index.html
File metadata and controls
52 lines (50 loc) · 2.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home - Product Promotions</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-100 font-sans">
<!-- Menubar -->
<nav class="bg-teal-900 p-4">
<ul class="flex space-x-4 text-white">
<li><a href="preminder/index.html" class="hover:underline">Preminder</a></li>
<li><a href="zaffy/index.html" class="hover:underline">Zaffy</a></li>
<li><a href="tanuki/index.html" class="hover:underline">Tanuki</a></li>
<li><a href="email-automator/index.html" class="hover:underline">Email Automator</a></li>
</ul>
</nav>
<!-- Promotions Section -->
<section class="container mx-auto my-8">
<h1 class="text-3xl font-bold text-center mb-6">Our Latest Promotions</h1>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<!-- Product 1 -->
<div class="bg-white p-4 shadow rounded">
<h2 class="text-xl font-semibold mb-2">Preminder</h2>
<p class="text-gray-700">Explore the amazing features of Product 1.</p>
<a href="preminder/index.html" class="text-blue-500 hover:underline">Learn More</a>
</div>
<!-- Product 2 -->
<div class="bg-white p-4 shadow rounded">
<h2 class="text-xl font-semibold mb-2">Zaffy</h2>
<p class="text-gray-700">Explore the amazing features of Product 2.</p>
<a href="zaffy/index.html" class="text-blue-500 hover:underline">Learn More</a>
</div>
<!-- Product 3 -->
<div class="bg-white p-4 shadow rounded">
<h2 class="text-xl font-semibold mb-2">Tanuki</h2>
<p class="text-gray-700">Explore the amazing features of Product 3.</p>
<a href="tanuki/index.html" class="text-blue-500 hover:underline">Learn More</a>
</div>
<!-- Product 4 -->
<div class="bg-white p-4 shadow rounded">
<h2 class="text-xl font-semibold mb-2">Email Automator</h2>
<p class="text-gray-700">Explore the amazing features of Product 4.</p>
<a href="email-automator/index.html" class="text-blue-500 hover:underline">Learn More</a>
</div>
</div>
</section>
</body>
</html>