File size: 16,064 Bytes
2814b1f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
430e252
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>CareConnect Haven - Compassionate Care Platform</title>
    <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
    <script src="https://cdn.tailwindcss.com"></script>
    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
    <script src="https://unpkg.com/feather-icons"></script>
    <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.waves.min.js"></script>
    <script>
        tailwind.config = {
            theme: {
                extend: {
                    colors: {
                        primary: {
                            50: '#f0f9ff',
                            100: '#e0f2fe',
                            200: '#bae6fd',
                            300: '#7dd3fc',
                            400: '#38bdf8',
                            500: '#0ea5e9',
                            600: '#0284c7',
                            700: '#0369a1',
                            800: '#075985',
                            900: '#0c4a6e',
                        },
                        secondary: {
                            50: '#fdf4ff',
                            100: '#fae8ff',
                            200: '#f5d0fe',
                            300: '#f0abfc',
                            400: '#e879f9',
                            500: '#d946ef',
                            600: '#c026d3',
                            700: '#a21caf',
                            800: '#86198f',
                            900: '#701a75',
                        }
                    }
                }
            }
        }
    </script>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        body {
            font-family: 'Inter', sans-serif;
        }
        .hero-gradient {
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(217, 70, 239, 0.1) 100%);
        }
        .service-card {
            transition: all 0.3s ease;
        }
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        @keyframes floating {
            0% { transform: translate(0, 0px); }
            50% { transform: translate(0, -15px); }
            100% { transform: translate(0, -0px); }
        }
    </style>
</head>
<body class="bg-gray-50">
    <!-- Navigation -->
    <nav class="bg-white shadow-sm sticky top-0 z-50">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="flex justify-between h-16">
                <div class="flex items-center">
                    <div class="flex-shrink-0 flex items-center">
                        <i data-feather="heart" class="h-8 w-8 text-primary-600"></i>
                        <span class="ml-2 text-xl font-bold text-gray-900">CareConnect Haven</span>
                    </div>
                </div>
                <div class="hidden md:flex items-center space-x-8">
                    <a href="#services" class="text-gray-700 hover:text-primary-600 transition-colors">Services</a>
                    <a href="#how-it-works" class="text-gray-700 hover:text-primary-600 transition-colors">How It Works</a>
                    <a href="#testimonials" class="text-gray-700 hover:text-primary-600 transition-colors">Testimonials</a>
                    <a href="login.html" class="text-gray-700 hover:text-primary-600 transition-colors">Login</a>
                    <a href="register.html" class="bg-primary-600 text-white px-4 py-2 rounded-lg hover:bg-primary-700 transition-colors">Get Started</a>
                </div>
                <div class="md:hidden flex items-center">
                    <button id="mobile-menu-button" class="text-gray-700">
                        <i data-feather="menu"></i>
                    </button>
                </div>
            </div>
        </div>
    </nav>

    <!-- Hero Section -->
    <section class="hero-gradient min-h-screen flex items-center relative overflow-hidden">
        <div id="vanta-bg" class="absolute inset-0 z-0"></div>
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20 relative z-10">
            <div class="grid md:grid-cols-2 gap-12 items-center">
                <div class="text-center md:text-left">
                    <h1 class="text-4xl md:text-6xl font-bold text-gray-900 mb-6">
                        Compassionate Care
                        <span class="text-primary-600">When You Need It Most</span>
                    </h1>
                    <p class="text-xl text-gray-600 mb-8 leading-relaxed">
                        Connecting seniors and individuals in need with trusted caregivers for personalized assistance, companionship, and professional care services.
                    </p>
                    <div class="flex flex-col sm:flex-row gap-4 justify-center md:justify-start">
                        <a href="register.html" class="bg-primary-600 text-white px-8 py-4 rounded-xl hover:bg-primary-700 transition-all transform hover:scale-105 font-semibold text-lg">
                            Request Care Now
                        </a>
                        <a href="#services" class="border-2 border-primary-600 text-primary-600 px-8 py-4 rounded-xl hover:bg-primary-600 hover:text-white transition-all transform hover:scale-105 font-semibold text-lg">
                            Explore Services
                        </a>
                    </div>
                </div>
                <div class="relative">
                    <div class="floating">
                        <img src="http://static.photos/wellness/640x360/1" alt="Happy senior receiving care" class="rounded-2xl shadow-2xl">
                    </div>
                    <div class="absolute -bottom-6 -left-6 bg-white p-4 rounded-xl shadow-lg">
                        <div class="flex items-center space-x-3">
                            <div class="bg-primary-100 p-2 rounded-full">
                                <i data-feather="users" class="h-6 w-6 text-primary-600"></i>
                            </div>
                            <div>
                                <p class="font-semibold text-gray-900">500+</p>
                                <p class="text-sm text-gray-600">Trusted Caregivers</p>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Services Section -->
    <section id="services" class="py-20 bg-white">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="text-center mb-16">
                <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Our Care Services</h2>
                <p class="text-xl text-gray-600 max-w-3xl mx-auto">
                    From daily assistance to specialized care, we provide comprehensive support tailored to your unique needs.
                </p>
            </div>
            <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
                <!-- Service Card 1 -->
                <div class="service-card bg-gray-50 rounded-2xl p-8 border border-gray-200">
                    <div class="bg-primary-100 w-16 h-16 rounded-xl flex items-center justify-center mb-6">
                        <i data-feather="home" class="h-8 w-8 text-primary-600"></i>
                    </div>
                    <h3 class="text-xl font-semibold text-gray-900 mb-4">Personal Care Assistance</h3>
                    <p class="text-gray-600 mb-6">Help with daily activities, medication reminders, and personal hygiene support.</p>
                    <a href="#" class="text-primary-600 font-semibold hover:text-primary-700 flex items-center">
                        Learn More <i data-feather="arrow-right" class="ml-2 h-4 w-4"></i>
                    </a>
                </div>

                <!-- Service Card 2 -->
                <div class="service-card bg-gray-50 rounded-2xl p-8 border border-gray-200">
                    <div class="bg-secondary-100 w-16 h-16 rounded-xl flex items-center justify-center mb-6">
                        <i data-feather="shopping-bag" class="h-8 w-8 text-secondary-600"></i>
                    </div>
                    <h3 class="text-xl font-semibold text-gray-900 mb-4">Companionship & Errands</h3>
                    <p class="text-gray-600 mb-6">Friendly visits, grocery shopping, transportation, and social activities.</p>
                    <a href="#" class="text-secondary-600 font-semibold hover:text-secondary-700 flex items-center">
                        Learn More <i data-feather="arrow-right" class="ml-2 h-4 w-4"></i>
                    </a>
                </div>

                <!-- Service Card 3 -->
                <div class="service-card bg-gray-50 rounded-2xl p-8 border border-gray-200">
                    <div class="bg-primary-100 w-16 h-16 rounded-xl flex items-center justify-center mb-6">
                        <i data-feather="heart" class="h-8 w-8 text-primary-600"></i>
                    </div>
                    <h3 class="text-xl font-semibold text-gray-900 mb-4">Medical Support</h3>
                    <p class="text-gray-600 mb-6">Nursing care, physical therapy assistance, and health monitoring.</p>
                    <a href="#" class="text-primary-600 font-semibold hover:text-primary-700 flex items-center">
                        Learn More <i data-feather="arrow-right" class="ml-2 h-4 w-4"></i>
                    </a>
                </div>
            </div>
        </div>
    </section>

    <!-- How It Works -->
    <section id="how-it-works" class="py-20 bg-gray-50">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="text-center mb-16">
                <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">How CareConnect Works</h2>
                <p class="text-xl text-gray-600 max-w-3xl mx-auto">
                    Getting the care you need is simple and straightforward with our easy-to-use platform.
                </p>
            </div>
            <div class="grid md:grid-cols-3 gap-8">
                <div class="text-center">
                    <div class="bg-primary-600 text-white w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-6">
                        <span class="text-2xl font-bold">1</span>
                    </div>
                    <h3 class="text-xl font-semibold text-gray-900 mb-4">Create Your Profile</h3>
                    <p class="text-gray-600">Tell us about your needs, preferences, and schedule requirements.</p>
                </div>
                <div class="text-center">
                    <div class="bg-primary-600 text-white w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-6">
                        <span class="text-2xl font-bold">2</span>
                    </div>
                    <h3 class="text-xl font-semibold text-gray-900 mb-4">Match with Caregivers</h3>
                    <p class="text-gray-600">We'll connect you with verified caregivers who match your specific requirements.</p>
                </div>
                <div class="text-center">
                    <div class="bg-primary-600 text-white w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-6">
                        <span class="text-2xl font-bold">3</span>
                    </div>
                    <h3 class="text-xl font-semibold text-gray-900 mb-4">Receive Quality Care</h3>
                    <p class="text-gray-600">Start receiving compassionate care from trusted professionals in your community.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="bg-gray-900 text-white py-12">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="grid md:grid-cols-4 gap-8">
                <div>
                    <div class="flex items-center mb-4">
                        <i data-feather="heart" class="h-6 w-6 text-primary-400"></i>
                        <span class="ml-2 text-xl font-bold">CareConnect Haven</span>
                    </div>
                    <p class="text-gray-400">Compassionate care for those who need it most.</p>
                </div>
                <div>
                    <h4 class="font-semibold mb-4">Services</h4>
                    <ul class="space-y-2 text-gray-400">
                        <li><a href="#" class="hover:text-white transition-colors">Personal Care</a></li>
                        <li><a href="#" class="hover:text-white transition-colors">Companionship</a></li>
                        <li><a href="#" class="hover:text-white transition-colors">Medical Support</a></li>
                        <li><a href="#" class="hover:text-white transition-colors">Specialized Care</a></li>
                    </ul>
                </div>
                <div>
                    <h4 class="font-semibold mb-4">Company</h4>
                    <ul class="space-y-2 text-gray-400">
                        <li><a href="#" class="hover:text-white transition-colors">About Us</a></li>
                        <li><a href="#" class="hover:text-white transition-colors">Careers</a></li>
                        <li><a href="#" class="hover:text-white transition-colors">Press</a></li>
                        <li><a href="#" class="hover:text-white transition-colors">Contact</a></li>
                    </ul>
                </div>
                <div>
                    <h4 class="font-semibold mb-4">Support</h4>
                    <ul class="space-y-2 text-gray-400">
                        <li><a href="#" class="hover:text-white transition-colors">Help Center</a></li>
                        <li><a href="#" class="hover:text-white transition-colors">Safety</a></li>
                        <li><a href="#" class="hover:text-white transition-colors">Privacy</a></li>
                        <li><a href="#" class="hover:text-white transition-colors">Terms</a></li>
                    </ul>
                </div>
            </div>
            <div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
                <p>&copy; 2024 CareConnect Haven. All rights reserved.</p>
            </div>
        </div>
    </footer>

    <script>
        // Initialize Vanta.js background
        VANTA.WAVES({
            el: "#vanta-bg",
            mouseControls: true,
            touchControls: true,
            gyroControls: false,
            minHeight: 200.00,
            minWidth: 200.00,
            scale: 1.00,
            scaleMobile: 1.00,
            color: 0x0ea5e9,
            shininess: 50,
            waveHeight: 20,
            waveSpeed: 0.5,
            zoom: 0.8
        });

        // Initialize Feather Icons
        feather.replace();

        // Mobile menu functionality
        document.getElementById('mobile-menu-button').addEventListener('click', function() {
            alert('Mobile menu would open here. In a real implementation, this would toggle a dropdown menu.');
        });

        // 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',
                        block: 'start'
                    });
                }
            });
        });
    </script>
</body>
</html>