linknotemaster-pro / index.html
Jdifb's picture
build me a app where I can write notes store links. like a note app but with more features add more features
43c33a1 verified
<!DOCTYPE html>
<html>
<head>
<title>My app</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="flex justify-center items-center h-screen overflow-hidden bg-white font-sans text-center px-6">
<div class="w-full max-w-2xl mx-auto">
<span class="text-xs rounded-full mb-4 inline-block px-3 py-1 border border-blue-500/20 bg-blue-500/10 text-blue-600">πŸš€ LinkNoteMaster Pro</span>
<h1 class="text-4xl lg:text-6xl font-bold font-sans mb-8">
<span class="text-2xl lg:text-4xl text-gray-500 block font-medium mb-4">Your Ultimate Note-Taking Companion</span>
Organize Links & Notes<br>Like Never Before
</h1>
<p class="text-lg text-gray-600 mb-8 max-w-xl mx-auto">
Capture ideas, save links, and stay organized with our powerful note-taking app. Features include favorites, private notes, and smart search.
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<a href="notes.html" class="bg-blue-600 hover:bg-blue-700 text-white px-8 py-4 rounded-lg font-semibold text-lg transition-colors shadow-lg hover:shadow-xl">
<i data-feather="play" class="w-5 h-5 inline mr-2"></i>
Get Started
</a>
<button class="border border-gray-300 hover:bg-gray-50 text-gray-700 px-8 py-4 rounded-lg font-semibold text-lg transition-colors">
<i data-feather="info" class="w-5 h-5 inline mr-2"></i>
Learn More
</button>
</div>
</div>
<img src="https://enzostvs-deepsite.hf.space/arrow.svg" class="absolute bottom-8 left-0 w-[100px] transform rotate-[30deg]" />
<script src="https://unpkg.com/feather-icons"></script>
<script>
feather.replace();
</script>
<script></script>
</body>
</html>