-
Notifications
You must be signed in to change notification settings - Fork 310
/
Copy pathmain.html
102 lines (94 loc) · 5 KB
/
main.html
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Open Source Tool Landing Page</title>
<script src="https://cdn.tailwindcss.com"></script>
<!-- 引入图标库 -->
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
</head>
<body class="bg-gradient-to-r from-blue-50 to-indigo-100 text-gray-900">
<!-- Header -->
<header class="bg-blue-600 text-white py-4">
<div class="container mx-auto px-4">
<div class="flex justify-between items-center">
<div class="text-2xl font-bold">Open Source Tool</div>
<nav class="space-x-4">
<a href="#features" class="hover:text-blue-200">Features</a>
<a href="#documentation" class="hover:text-blue-200">Documentation</a>
<a href="#community" class="hover:text-blue-200">Community</a>
<a href="#download" class="hover:text-blue-200">Download</a>
</nav>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="bg-gradient-to-r from-blue-500 to-indigo-600 text-white py-20">
<div class="container mx-auto px-4 text-center">
<h1 class="text-5xl font-bold mb-4">Welcome to Open Source Tool</h1>
<p class="text-xl mb-8">A powerful and flexible open-source tool for your data processing needs.</p>
<a href="#download" class="bg-white text-blue-600 px-6 py-3 rounded-full font-semibold hover:bg-blue-100">Get Started</a>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-16">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12">Features</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white p-6 rounded-lg shadow-lg text-center">
<i class="fas fa-cogs text-4xl text-blue-600 mb-4"></i>
<h3 class="text-xl font-bold mb-4">Feature One</h3>
<p class="text-gray-700">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-lg text-center">
<i class="fas fa-rocket text-4xl text-blue-600 mb-4"></i>
<h3 class="text-xl font-bold mb-4">Feature Two</h3>
<p class="text-gray-700">Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-lg text-center">
<i class="fas fa-shield-alt text-4xl text-blue-600 mb-4"></i>
<h3 class="text-xl font-bold mb-4">Feature Three</h3>
<p class="text-gray-700">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>
</div>
</div>
</div>
</section>
<!-- Documentation Section -->
<section id="documentation" class="bg-gray-200 py-16">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12">Documentation</h2>
<div class="text-center">
<p class="text-xl mb-8">Explore our comprehensive documentation to get started with Open Source Tool.</p>
<a href="#" class="bg-blue-600 text-white px-6 py-3 rounded-full font-semibold hover:bg-blue-700">Read Documentation</a>
</div>
</div>
</section>
<!-- Community Section -->
<section id="community" class="py-16">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12">Community</h2>
<div class="text-center">
<p class="text-xl mb-8">Join our vibrant community of developers and contributors.</p>
<a href="#" class="bg-blue-600 text-white px-6 py-3 rounded-full font-semibold hover:bg-blue-700">Join Community</a>
</div>
</div>
</section>
<!-- Download Section -->
<section id="download" class="bg-gradient-to-r from-blue-500 to-indigo-600 text-white py-16">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12">Download</h2>
<div class="text-center">
<p class="text-xl mb-8">Get the latest version of Open Source Tool and start building today.</p>
<a href="#" class="bg-white text-blue-600 px-6 py-3 rounded-full font-semibold hover:bg-blue-100">Download Now</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-8">
<div class="container mx-auto px-4 text-center">
<p>© 2023 Open Source Tool. All rights reserved.</p>
</div>
</footer>
</body>
</html>