forked from meowrain/localsend-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (22 loc) · 1.04 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to localsend-go</title>
<!-- Tailwind CSS -->
<link href="https://unpkg.com/[email protected]/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-100">
<div class="container mx-auto mt-20">
<div class="bg-white p-8 rounded-lg shadow-lg text-center">
<h1 class="text-4xl font-bold mb-4">Welcome to localsend-go</h1>
<p class="text-lg text-gray-700 mb-6">Easily send and receive files over your local network using our command-line tool.</p>
<div class="flex justify-center space-x-4">
<a href="#" class="bg-blue-500 text-white px-6 py-3 rounded-lg font-semibold hover:bg-blue-600">Get Started</a>
<a href="#" class="bg-gray-500 text-white px-6 py-3 rounded-lg font-semibold hover:bg-gray-600">Documentation</a>
</div>
</div>
</div>
</body>
</html>