d4w-ca / index.html
jcisecki911's picture
Add 3 files
d8a684b verified
<!DOCTYPE html>
<html lang="en">
<head>
<title>I'm ready to work - Ask me anything</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700&display=swap');
:root {
--primary: #6366f1;
--primary-light: #818cf8;
--secondary: #10b981;
--dark: #1e293b;
--light: #f8fafc;
}
body {
font-family: 'Inter', sans-serif;
background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
display: flex;
justify-content: center;
align-items: center;
min-height: 100dvh;
text-align: center;
overflow: hidden;
position: relative;
}
.glass-card {
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border-radius: 1rem;
border: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.arrow {
position: absolute;
bottom: 2rem;
left: 50%;
transform: translateX(-50%) rotate(30deg);
width: 100px;
opacity: 0.7;
animation: float 3s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateX(-50%) rotate(30deg) translateY(0px); }
50% { transform: translateX(-50%) rotate(30deg) translateY(-10px); }
100% { transform: translateX(-50%) rotate(30deg) translateY(0px); }
}
.pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
</style>
</head>
<body class="p-4">
<div class="glass-card p-8 max-w-2xl mx-auto w-full">
<h1 class="text-4xl md:text-5xl font-bold text-gray-800 mb-2">
<span class="text-gray-500 text-2xl md:text-3xl block">I'm ready to work,</span>
Ask me anything.
</h1>
<p class="text-lg text-gray-600 mt-6 mb-8">
I'm here to assist you with web development, design, and coding questions.
</p>
<div class="flex justify-center gap-4">
<button class="px-6 py-3 bg-indigo-600 hover:bg-indigo-700 text-white rounded-lg shadow-md transition-all">
<i class="fas fa-paper-plane mr-2"></i> Start Chat
</button>
<button class="px-6 py-3 bg-white hover:bg-gray-100 text-gray-800 border border-gray-200 rounded-lg shadow-sm transition-all">
<i class="fas fa-book mr-2"></i> Learn More
</button>
</div>
</div>
<img src="https://enzostvs-deepsite.hf.space/arrow.svg" class="arrow" alt="Down arrow indicator"/>
<div class="absolute bottom-4 left-0 right-0 text-center text-gray-400 text-sm">
<span class="pulse"><i class="fas fa-circle"></i></span>
<span class="ml-2">Connected and ready</span>
</div>
<script>
// Simple hover effect for buttons
document.querySelectorAll('button').forEach(btn => {
btn.addEventListener('mouseenter', () => {
btn.classList.add('scale-105');
btn.classList.remove('scale-100');
});
btn.addEventListener('mouseleave', () => {
btn.classList.remove('scale-105');
btn.classList.add('scale-100');
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=jcisecki911/d4w-ca" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>