-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtest.html
More file actions
55 lines (52 loc) · 2.88 KB
/
test.html
File metadata and controls
55 lines (52 loc) · 2.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Swarm Technology</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-900 text-white">
<!-- Hero Section -->
<section class="h-screen flex flex-col items-center justify-center text-center px-6">
<h1 class="text-5xl font-bold text-blue-400 animate-pulse">Swarm Technology Project</h1>
<p class="mt-4 text-lg text-gray-300">Harnessing the power of AI-driven drone swarms for the future.</p>
<a href="#about" class="mt-6 px-6 py-3 bg-blue-500 hover:bg-blue-600 rounded-lg text-lg">Learn More</a>
</section>
<!-- About Section -->
<section id="about" class="py-20 px-10">
<div class="max-w-4xl mx-auto text-center">
<h2 class="text-3xl font-semibold text-blue-300">About the Project</h2>
<p class="mt-4 text-gray-400">Our research focuses on optimizing drone swarm communication and coordination using AI algorithms to improve efficiency in various applications like surveillance, disaster response, and delivery systems.</p>
</div>
</section>
<!-- Features -->
<section class="py-20 bg-gray-800 px-10">
<div class="max-w-6xl mx-auto text-center">
<h2 class="text-3xl font-semibold text-blue-300">Key Features</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 mt-8">
<div class="p-6 bg-gray-700 rounded-lg shadow-lg">
<h3 class="text-xl font-semibold text-blue-400">AI-Driven Algorithms</h3>
<p class="text-gray-300 mt-2">Advanced neural networks optimize drone behavior in real-time.</p>
</div>
<div class="p-6 bg-gray-700 rounded-lg shadow-lg">
<h3 class="text-xl font-semibold text-blue-400">Decentralized Communication</h3>
<p class="text-gray-300 mt-2">Secure peer-to-peer communication ensures robust connectivity.</p>
</div>
<div class="p-6 bg-gray-700 rounded-lg shadow-lg">
<h3 class="text-xl font-semibold text-blue-400">Autonomous Swarm Coordination</h3>
<p class="text-gray-300 mt-2">Seamless collaboration between multiple drones in dynamic environments.</p>
</div>
</div>
</div>
</section>
<!-- Contact -->
<section class="py-20 px-10">
<div class="max-w-4xl mx-auto text-center">
<h2 class="text-3xl font-semibold text-blue-300">Get in Touch</h2>
<p class="mt-4 text-gray-400">Interested in collaborating? Reach out to us!</p>
<a href="mailto:contact@swarmtech.com" class="mt-6 px-6 py-3 bg-blue-500 hover:bg-blue-600 rounded-lg text-lg inline-block">Contact Us</a>
</div>
</section>
</body>
</html>