-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
65 lines (59 loc) · 2.83 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ImportBot - Seamless GitHub Repository Management</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-100 text-gray-900 font-sans">
<header class="bg-white shadow-sm">
<nav class="container mx-auto px-6 py-3">
<div class="flex justify-between items-center">
<div class="text-xl font-bold text-gray-800">ImportBot</div>
<div>
<a href="#features" class="text-gray-800 hover:text-blue-600 mx-3">Features</a>
<a href="#install" class="text-gray-800 hover:text-blue-600 mx-3">Install</a>
<a href="https://github.com/sheikh-developer/ImportBot" class="text-gray-800 hover:text-blue-600 mx-3">GitHub</a>
</div>
</div>
</nav>
</header>
<main class="container mx-auto px-6 py-8">
<section class="text-center mb-12">
<h1 class="text-4xl font-bold mb-4">Welcome to ImportBot</h1>
<p class="text-xl text-gray-600">Seamlessly manage and import your GitHub repositories</p>
</section>
<section id="features" class="mb-12">
<h2 class="text-2xl font-bold mb-4">Features</h2>
<ul class="list-disc list-inside space-y-2">
<li>Import repositories from ZIP files, URLs, or Git</li>
<li>Search and fork GitHub repositories</li>
<li>Generate custom badges for your projects</li>
<li>View trending repositories and Git insights</li>
<li>Collaborate on code in real-time</li>
<li>Set up preview deployments for your projects</li>
</ul>
</section>
<section id="install" class="mb-12">
<h2 class="text-2xl font-bold mb-4">Installation</h2>
<p class="mb-4">To install ImportBot, you can use our web installer or run our installation script:</p>
<div class="bg-gray-200 p-4 rounded-md">
<code>
curl -o- https://raw.githubusercontent.com/sheikh-developer/ImportBot/main/install.sh | bash
</code>
</div>
</section>
<section class="text-center">
<a href="https://github.com/sheikh-developer/ImportBot" class="bg-blue-600 text-white px-6 py-2 rounded-md hover:bg-blue-700 transition duration-300">
View on GitHub
</a>
</section>
</main>
<footer class="bg-white mt-12 py-6">
<div class="container mx-auto px-6 text-center text-gray-600">
<p>© 2023 ImportBot. All rights reserved.</p>
</div>
</footer>
</body>
</html>