Generaltoa commited on
Commit
d819b44
·
verified ·
1 Parent(s): 33615c3

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. index.html +201 -19
index.html CHANGED
@@ -1,19 +1,201 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>SSDI - Get Help with Your Disability Claim</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ .hero-bg {
11
+ background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
12
+ 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>');
13
+ background-size: cover;
14
+ background-position: center;
15
+ position: relative;
16
+ }
17
+
18
+ .hero-bg::before {
19
+ content: '';
20
+ position: absolute;
21
+ top: 0;
22
+ left: 0;
23
+ right: 0;
24
+ bottom: 0;
25
+ background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(30, 64, 175, 0.8) 100%);
26
+ z-index: 1;
27
+ }
28
+
29
+ .hero-content {
30
+ position: relative;
31
+ z-index: 2;
32
+ }
33
+
34
+ .phone-icon {
35
+ animation: pulse 2s infinite;
36
+ }
37
+
38
+ @keyframes pulse {
39
+ 0%, 100% { transform: scale(1); }
40
+ 50% { transform: scale(1.05); }
41
+ }
42
+
43
+ .cookie-banner {
44
+ backdrop-filter: blur(10px);
45
+ background: rgba(255, 255, 255, 0.95);
46
+ }
47
+
48
+ .ssdi-logo {
49
+ font-weight: 800;
50
+ letter-spacing: 2px;
51
+ font-size: 1.5rem;
52
+ }
53
+
54
+ .hero-text {
55
+ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
56
+ }
57
+
58
+ @media (max-width: 768px) {
59
+ .hero-text {
60
+ font-size: 1.5rem;
61
+ }
62
+ .phone-icon {
63
+ width: 60px;
64
+ height: 60px;
65
+ }
66
+ }
67
+ </style>
68
+ </head>
69
+ <body class="bg-gray-50">
70
+ <!-- Header -->
71
+ <header class="bg-white shadow-sm">
72
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
73
+ <div class="flex justify-between items-center py-4">
74
+ <!-- Logo -->
75
+ <div class="flex items-center">
76
+ <div class="ssdi-logo text-blue-600">
77
+ SSDI
78
+ <div class="text-xs font-normal text-gray-600">DISABILITY</div>
79
+ </div>
80
+ </div>
81
+
82
+ <!-- Phone Number -->
83
+ <div class="flex items-center space-x-3">
84
+ <div class="text-right">
85
+ <div class="text-xs text-gray-500 uppercase tracking-wide">Call Now</div>
86
+ <div class="text-lg font-bold text-blue-600">(888) 555-1212</div>
87
+ </div>
88
+ <div class="w-12 h-12 bg-blue-600 rounded-full flex items-center justify-center">
89
+ <i class="fas fa-phone text-white text-xl"></i>
90
+ </div>
91
+ </div>
92
+ </div>
93
+ </div>
94
+ </header>
95
+
96
+ <!-- Hero Section -->
97
+ <main class="hero-bg min-h-screen flex items-center">
98
+ <div class="hero-content max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20">
99
+ <div class="grid lg:grid-cols-2 gap-12 items-center">
100
+ <!-- Left Content -->
101
+ <div class="text-white">
102
+ <h1 class="hero-text text-4xl lg:text-5xl font-bold mb-6 leading-tight">
103
+ Get Help with Your Disability Claim
104
+ </h1>
105
+ <p class="hero-text text-xl lg:text-2xl mb-8 text-blue-100">
106
+ Call Now for a Free Consultation
107
+ </p>
108
+
109
+ <!-- CTA Button -->
110
+ <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">
111
+ Call Now
112
+ </button>
113
+ </div>
114
+
115
+ <!-- Right Image -->
116
+ <div class="flex justify-center lg:justify-end">
117
+ <div class="relative">
118
+ <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">
119
+ <div class="w-64 h-64 lg:w-80 lg:h-80 bg-white rounded-full flex items-center justify-center overflow-hidden">
120
+ <img src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=400&h=400&fit=crop&crop=face"
121
+ alt="Professional woman smiling"
122
+ class="w-full h-full object-cover rounded-full">
123
+ </div>
124
+ </div>
125
+ <!-- Phone Icon -->
126
+ <div class="absolute -bottom-8 -right-8 phone-icon">
127
+ <div class="w-20 h-20 bg-blue-600 rounded-full flex items-center justify-center shadow-lg">
128
+ <i class="fas fa-phone text-white text-2xl"></i>
129
+ </div>
130
+ </div>
131
+ </div>
132
+ </div>
133
+ </div>
134
+ </div>
135
+ </main>
136
+
137
+ <!-- Cookie Consent Banner -->
138
+ <div id="cookieBanner" class="fixed bottom-0 left-0 right-0 cookie-banner border-t border-gray-200 p-4 z-50">
139
+ <div class="max-w-7xl mx-auto flex flex-col sm:flex-row items-start sm:items-center justify-between gap-4">
140
+ <div class="flex-1">
141
+ <h3 class="font-semibold text-gray-800 mb-2">Your privacy matters</h3>
142
+ <p class="text-sm text-gray-600">
143
+ We use cookies to enhance your experience, analyse traffic, and serve personalised content. 'Accept Cookies' to consent per our
144
+ <span class="font-semibold">Cookie</span> and <span class="font-semibold">Privacy</span> policies.
145
+ </p>
146
+ </div>
147
+ <div class="flex flex-col sm:flex-row gap-3">
148
+ <button onclick="acceptCookies()" class="px-6 py-2 bg-gray-800 text-white rounded-lg hover:bg-gray-700 transition-colors">
149
+ Accept Cookies
150
+ </button>
151
+ <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">
152
+ Manage preferences
153
+ <i class="fas fa-chevron-right ml-2 text-xs"></i>
154
+ </button>
155
+ </div>
156
+ <button onclick="closeCookieBanner()" class="absolute top-2 right-2 text-gray-400 hover:text-gray-600">
157
+ <i class="fas fa-times"></i>
158
+ </button>
159
+ </div>
160
+ </div>
161
+
162
+ <script>
163
+ function acceptCookies() {
164
+ document.getElementById('cookieBanner').style.display = 'none';
165
+ localStorage.setItem('cookiesAccepted', 'true');
166
+ }
167
+
168
+ function manageCookies() {
169
+ alert('Cookie preferences would open here');
170
+ }
171
+
172
+ function closeCookieBanner() {
173
+ document.getElementById('cookieBanner').style.display = 'none';
174
+ }
175
+
176
+ // Check if cookies were already accepted
177
+ if (localStorage.getItem('cookiesAccepted') === 'true') {
178
+ document.getElementById('cookieBanner').style.display = 'none';
179
+ }
180
+
181
+ // Mobile menu toggle (if needed)
182
+ function toggleMobileMenu() {
183
+ const menu = document.getElementById('mobileMenu');
184
+ menu.classList.toggle('hidden');
185
+ }
186
+
187
+ // Smooth scrolling for anchor links
188
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
189
+ anchor.addEventListener('click', function (e) {
190
+ e.preventDefault();
191
+ const target = document.querySelector(this.getAttribute('href'));
192
+ if (target) {
193
+ target.scrollIntoView({
194
+ behavior: 'smooth'
195
+ });
196
+ }
197
+ });
198
+ });
199
+ </script>
200
+ </body>
201
+ </html>