Spaces:
Running
Running
File size: 5,706 Bytes
52110fb 33f73cb |
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 103 104 105 106 107 108 109 110 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CodeNest - Your Code Repository</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tailwindcss/ui@latest/dist/tailwind-ui.min.css">
<link rel="stylesheet" href="style.css">
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
</head>
<body class="bg-gray-100">
<nav class="bg-gray-800 text-white p-4">
<div class="container mx-auto flex justify-between items-center">
<div class="flex items-center space-x-2">
<i data-feather="code" class="w-6 h-6"></i>
<span class="font-bold text-xl">CodeNest</span>
</div>
<div class="hidden md:flex space-x-6">
<a href="#" class="hover:text-gray-300">Dashboard</a>
<a href="repositories.html" class="hover:text-gray-300">Repositories</a>
<a href="#" class="hover:text-gray-300">Explore</a>
<a href="#" class="hover:text-gray-300">Pricing</a>
</div>
<div class="flex items-center space-x-4">
<a href="#" class="hover:text-gray-300">Sign in</a>
<a href="#" class="px-4 py-2 bg-green-600 rounded-md hover:bg-green-700">Sign up</a>
</div>
</div>
</nav>
<main class="container mx-auto mt-10 px-4">
<section class="bg-white rounded-lg shadow-lg p-8 text-center">
<h1 class="text-4xl font-bold text-gray-800 mb-4">Where code comes to nest</h1>
<p class="text-xl text-gray-600 mb-8">CodeNest is a development platform inspired by the way developers work. From open source to business, you can host and review code, manage projects, and build software alongside millions of other developers.</p>
<div class="flex justify-center space-x-4">
<a href="repositories.html" class="px-6 py-3 bg-blue-600 text-white rounded-md hover:bg-blue-700">Explore repositories</a>
<a href="#" class="px-6 py-3 border border-gray-300 text-gray-700 rounded-md hover:bg-gray-100">Learn more</a>
</div>
</section>
<section class="mt-16 grid md:grid-cols-3 gap-8">
<div class="bg-white p-6 rounded-lg shadow">
<div class="text-blue-500 mb-4">
<i data-feather="git-branch" class="w-10 h-10"></i>
</div>
<h3 class="text-xl font-bold mb-2">Version Control</h3>
<p class="text-gray-600">CodeNest uses Git version control for all repositories, making collaboration seamless and efficient.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow">
<div class="text-green-500 mb-4">
<i data-feather="users" class="w-10 h-10"></i>
</div>
<h3 class="text-xl font-bold mb-2">Collaboration</h3>
<p class="text-gray-600">Work together with your team on the same project using our powerful collaboration tools.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow">
<div class="text-purple-500 mb-4">
<i data-feather="shield" class="w-10 h-10"></i>
</div>
<h3 class="text-xl font-bold mb-2">Security</h3>
<p class="text-gray-600">Your code is safe with us. We implement the highest security standards to protect your work.</p>
</div>
</section>
</main>
<footer class="bg-gray-800 text-white mt-16 py-8">
<div class="container mx-auto px-4">
<div class="grid md:grid-cols-4 gap-8">
<div>
<h3 class="font-bold text-xl mb-4">CodeNest</h3>
<p class="text-gray-400">The complete developer platform to build, scale, and deliver secure software.</p>
</div>
<div>
<h4 class="font-bold mb-4">Product</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Features</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Pricing</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Enterprise</a></li>
</ul>
</div>
<div>
<h4 class="font-bold mb-4">Community</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Documentation</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Forum</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Events</a></li>
</ul>
</div>
<div>
<h4 class="font-bold mb-4">Company</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">About</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
<p>© 2023 CodeNest, Inc. All rights reserved.</p>
</div>
</div>
</footer>
<script>
feather.replace();
</script>
</body>
</html>
|