anycoder-25605dc2 / index.html
Generaltoa's picture
Upload folder using huggingface_hub
d819b44 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SSDI - Get Help with Your Disability Claim</title>
<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>
.hero-bg {
background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%231e3a8a;stop-opacity:0.8" /><stop offset="100%" style="stop-color:%231e40af;stop-opacity:0.6" /></linearGradient></defs><rect width="1000" height="1000" fill="url(%23grad1)"/></svg>');
background-size: cover;
background-position: center;
position: relative;
}
.hero-bg::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(30, 64, 175, 0.8) 100%);
z-index: 1;
}
.hero-content {
position: relative;
z-index: 2;
}
.phone-icon {
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
.cookie-banner {
backdrop-filter: blur(10px);
background: rgba(255, 255, 255, 0.95);
}
.ssdi-logo {
font-weight: 800;
letter-spacing: 2px;
font-size: 1.5rem;
}
.hero-text {
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
.hero-text {
font-size: 1.5rem;
}
.phone-icon {
width: 60px;
height: 60px;
}
}
</style>
</head>
<body class="bg-gray-50">
<!-- Header -->
<header class="bg-white shadow-sm">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center py-4">
<!-- Logo -->
<div class="flex items-center">
<div class="ssdi-logo text-blue-600">
SSDI
<div class="text-xs font-normal text-gray-600">DISABILITY</div>
</div>
</div>
<!-- Phone Number -->
<div class="flex items-center space-x-3">
<div class="text-right">
<div class="text-xs text-gray-500 uppercase tracking-wide">Call Now</div>
<div class="text-lg font-bold text-blue-600">(888) 555-1212</div>
</div>
<div class="w-12 h-12 bg-blue-600 rounded-full flex items-center justify-center">
<i class="fas fa-phone text-white text-xl"></i>
</div>
</div>
</div>
</div>
</header>
<!-- Hero Section -->
<main class="hero-bg min-h-screen flex items-center">
<div class="hero-content max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20">
<div class="grid lg:grid-cols-2 gap-12 items-center">
<!-- Left Content -->
<div class="text-white">
<h1 class="hero-text text-4xl lg:text-5xl font-bold mb-6 leading-tight">
Get Help with Your Disability Claim
</h1>
<p class="hero-text text-xl lg:text-2xl mb-8 text-blue-100">
Call Now for a Free Consultation
</p>
<!-- CTA Button -->
<button class="bg-white text-blue-600 px-8 py-4 rounded-lg font-semibold text-lg hover:bg-gray-100 transition-colors duration-300 shadow-lg hover:shadow-xl transform hover:-translate-y-1">
Call Now
</button>
</div>
<!-- Right Image -->
<div class="flex justify-center lg:justify-end">
<div class="relative">
<div class="w-80 h-80 lg:w-96 lg:h-96 bg-gradient-to-br from-blue-400 to-blue-600 rounded-full flex items-center justify-center shadow-2xl">
<div class="w-64 h-64 lg:w-80 lg:h-80 bg-white rounded-full flex items-center justify-center overflow-hidden">
<img src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=400&h=400&fit=crop&crop=face"
alt="Professional woman smiling"
class="w-full h-full object-cover rounded-full">
</div>
</div>
<!-- Phone Icon -->
<div class="absolute -bottom-8 -right-8 phone-icon">
<div class="w-20 h-20 bg-blue-600 rounded-full flex items-center justify-center shadow-lg">
<i class="fas fa-phone text-white text-2xl"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<!-- Cookie Consent Banner -->
<div id="cookieBanner" class="fixed bottom-0 left-0 right-0 cookie-banner border-t border-gray-200 p-4 z-50">
<div class="max-w-7xl mx-auto flex flex-col sm:flex-row items-start sm:items-center justify-between gap-4">
<div class="flex-1">
<h3 class="font-semibold text-gray-800 mb-2">Your privacy matters</h3>
<p class="text-sm text-gray-600">
We use cookies to enhance your experience, analyse traffic, and serve personalised content. 'Accept Cookies' to consent per our
<span class="font-semibold">Cookie</span> and <span class="font-semibold">Privacy</span> policies.
</p>
</div>
<div class="flex flex-col sm:flex-row gap-3">
<button onclick="acceptCookies()" class="px-6 py-2 bg-gray-800 text-white rounded-lg hover:bg-gray-700 transition-colors">
Accept Cookies
</button>
<button onclick="manageCookies()" class="px-6 py-2 border border-gray-300 text-gray-700 rounded-lg hover:bg-gray-50 transition-colors flex items-center">
Manage preferences
<i class="fas fa-chevron-right ml-2 text-xs"></i>
</button>
</div>
<button onclick="closeCookieBanner()" class="absolute top-2 right-2 text-gray-400 hover:text-gray-600">
<i class="fas fa-times"></i>
</button>
</div>
</div>
<script>
function acceptCookies() {
document.getElementById('cookieBanner').style.display = 'none';
localStorage.setItem('cookiesAccepted', 'true');
}
function manageCookies() {
alert('Cookie preferences would open here');
}
function closeCookieBanner() {
document.getElementById('cookieBanner').style.display = 'none';
}
// Check if cookies were already accepted
if (localStorage.getItem('cookiesAccepted') === 'true') {
document.getElementById('cookieBanner').style.display = 'none';
}
// Mobile menu toggle (if needed)
function toggleMobileMenu() {
const menu = document.getElementById('mobileMenu');
menu.classList.toggle('hidden');
}
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({
behavior: 'smooth'
});
}
});
});
</script>
</body>
</html>