manishaegis's picture
Create Biolink maker webapp
94c5e6a verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LinkHive - Biolink Maker</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="bg-gray-50">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8">
<section class="text-center mb-12">
<h1 class="text-4xl md:text-5xl font-bold text-gray-800 mb-4">Your Links. One Place.</h1>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">Create beautiful biolink pages to share all your important links in one place.</p>
<div class="mt-8">
<a href="/dashboard" class="bg-amber-500 hover:bg-amber-600 text-white font-bold py-3 px-8 rounded-full text-lg transition duration-300 inline-flex items-center">
Get Started <i data-feather="arrow-right" class="ml-2"></i>
</a>
</div>
</section>
<section class="mb-16">
<div class="bg-white rounded-xl shadow-lg p-6 max-w-4xl mx-auto">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-6 md:mb-0 md:pr-8">
<h2 class="text-2xl font-bold text-gray-800 mb-4">Example Bio Link</h2>
<div class="space-y-4">
<div class="bg-gray-100 p-4 rounded-lg hover:bg-amber-50 transition duration-300">
<div class="flex items-center">
<div class="bg-amber-100 p-2 rounded-full mr-3">
<i data-feather="instagram" class="text-amber-600"></i>
</div>
<span class="font-medium">Instagram</span>
</div>
</div>
<div class="bg-gray-100 p-4 rounded-lg hover:bg-amber-50 transition duration-300">
<div class="flex items-center">
<div class="bg-amber-100 p-2 rounded-full mr-3">
<i data-feather="youtube" class="text-amber-600"></i>
</div>
<span class="font-medium">YouTube Channel</span>
</div>
</div>
<div class="bg-gray-100 p-4 rounded-lg hover:bg-amber-50 transition duration-300">
<div class="flex items-center">
<div class="bg-amber-100 p-2 rounded-full mr-3">
<i data-feather="shopping-bag" class="text-amber-600"></i>
</div>
<span class="font-medium">My Online Store</span>
</div>
</div>
</div>
</div>
<div class="md:w-1/2">
<img src="http://static.photos/technology/640x360/42" alt="Biolink example" class="rounded-lg shadow">
</div>
</div>
</div>
</section>
<section class="mb-16">
<h2 class="text-3xl font-bold text-center text-gray-800 mb-12">Why Choose LinkHive?</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300">
<div class="bg-amber-100 w-12 h-12 rounded-full flex items-center justify-center mb-4">
<i data-feather="zap" class="text-amber-600"></i>
</div>
<h3 class="text-xl font-bold mb-2 text-gray-800">Lightning Fast</h3>
<p class="text-gray-600">Our pages load in milliseconds, ensuring your audience never waits.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300">
<div class="bg-amber-100 w-12 h-12 rounded-full flex items-center justify-center mb-4">
<i data-feather="edit" class="text-amber-600"></i>
</div>
<h3 class="text-xl font-bold mb-2 text-gray-800">Easy Customization</h3>
<p class="text-gray-600">Change colors, fonts, and layouts with just a few clicks.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300">
<div class="bg-amber-100 w-12 h-12 rounded-full flex items-center justify-center mb-4">
<i data-feather="bar-chart-2" class="text-amber-600"></i>
</div>
<h3 class="text-xl font-bold mb-2 text-gray-800">Powerful Analytics</h3>
<p class="text-gray-600">Track clicks and visitor data to understand your audience better.</p>
</div>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>