build-dash / index.html
imsathiya17's picture
add to the sign in page, login via third party apps like google, github, or twitter - Initial Deployment
8433411 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modern UI with Button</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<style>
.btn-hover-effect {
transition: all 0.3s ease;
transform: translateY(0);
}
.btn-hover-effect:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
}
.btn-active-effect:active {
transform: translateY(1px);
}
</style>
</head>
<body class="bg-gradient-to-br from-indigo-50 to-blue-100 min-h-screen flex items-center justify-center">
<div class="max-w-md w-full mx-auto p-8 bg-white rounded-2xl shadow-xl" data-aos="fade-up">
<div class="text-center mb-8">
<i data-feather="zap" class="w-12 h-12 text-blue-500 mx-auto mb-4"></i>
<h1 class="text-3xl font-bold text-gray-800 mb-2">Welcome to Our Platform</h1>
<p class="text-gray-600">Discover amazing features that will transform your workflow</p>
</div>
<button
class="btn-hover-effect btn-active-effect w-full py-3 px-6 bg-gradient-to-r from-blue-500 to-indigo-600 text-white font-semibold rounded-lg shadow-md hover:shadow-lg transition-all duration-300 flex items-center justify-center gap-2"
onclick="alert('Button clicked!')"
>
<i data-feather="rocket" class="w-5 h-5"></i>
Get Started Now
</button>
<div class="mt-6 text-center text-sm text-gray-500">
<p>Already have an account? <a href="signin.html" class="text-blue-500 hover:underline">Sign in</a></p>
</div>
</div>
<script>
AOS.init({
duration: 800,
easing: 'ease-in-out',
once: true
});
feather.replace();
</script>
</body>
</html>