-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (49 loc) · 1.8 KB
/
Copy pathindex.html
File metadata and controls
61 lines (49 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Tailwind CSS CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<title>App Landing Page</title>
</head>
<body class="bg-yellow-100 text-yellow-800">
<!-- HERO SECTION -->
<header class="max-w-7xl mx-auto px-6 py-20">
<section class="flex flex-col-reverse lg:flex-row items-center gap-12">
<!-- TEXT CONTENT -->
<div class="w-full lg:w-1/2 text-center lg:text-left">
<h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">
Tailiwind Template for <br class="hidden md:block">
App and Software Sites
</h1>
<p class="text-lg text-gray-600 mb-8">
A modern mobile solution designed to help teams and organizations stay organized,
productive, and connected anywhere, anytime.
Welcome to the future of work management.
</p>
<!-- CTA BUTTONS -->
<div class="flex flex-col sm:flex-row gap-4 justify-center lg:justify-start">
<a href="#"
class="px-8 py-3 rounded-lg bg-blue-600 text-white font-semibold
hover:bg-blue-700 transition duration-300 text-center">
Get Started
</a>
<a href="#"
class="px-8 py-3 rounded-lg border border-blue-600 text-blue-600
font-semibold hover:bg-blue-50 transition duration-300 text-center">
Learn More
</a>
</div>
</div>
<!-- IMAGE / MOCKUP -->
<div class="w-full lg:w-1/2 flex justify-center">
<img
src="hero-light.png"
alt="App mockup"
class="w-72 md:w-96 drop-shadow-xl">
</div>
</section>
</header>
</body>
</html>