File size: 22,096 Bytes
f0d7810
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3ad743a
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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Jesus - The Savior</title>
    <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>
        .hero-gradient {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
        }
        .verse-card {
            transition: all 0.3s ease;
        }
        .verse-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);
        }
        .cross-icon {
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            animation: draw 3s ease forwards;
        }
        @keyframes draw {
            to {
                stroke-dashoffset: 0;
            }
        }
    </style>
</head>
<body class="font-sans bg-gray-50">
    <!-- Navigation -->
    <nav class="bg-white shadow-md sticky top-0 z-50">
        <div class="container mx-auto px-6 py-3">
            <div class="flex justify-between items-center">
                <div class="flex items-center space-x-4">
                    <i data-feather="cross" class="text-blue-600"></i>
                    <span class="text-xl font-bold text-blue-600">Jesus Christ</span>
                </div>
                <div class="hidden md:flex items-center space-x-8">
                    <a href="#about" class="text-gray-700 hover:text-blue-600">About</a>
                    <a href="#teachings" class="text-gray-700 hover:text-blue-600">Teachings</a>
                    <a href="#miracles" class="text-gray-700 hover:text-blue-600">Miracles</a>
                    <a href="#verses" class="text-gray-700 hover:text-blue-600">Verses</a>
                </div>
                <button class="md:hidden focus:outline-none">
                    <i data-feather="menu" class="text-gray-700"></i>
                </button>
            </div>
        </div>
    </nav>

    <!-- Hero Section -->
    <section class="hero-gradient text-white py-20">
        <div class="container mx-auto px-6 text-center">
            <div class="max-w-3xl mx-auto">
                <svg class="w-24 h-24 mx-auto mb-6 cross-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
                    <line x1="12" y1="5" x2="12" y2="19"></line>
                    <line x1="5" y1="12" x2="19" y2="12"></line>
                </svg>
                <h1 class="text-4xl md:text-5xl font-bold mb-6" data-aos="fade-up">Jesus Christ - The Way, The Truth, and The Life</h1>
                <p class="text-xl mb-8" data-aos="fade-up" data-aos-delay="100">
                    "For God so loved the world that he gave his one and only Son, that whoever believes in him shall not perish but have eternal life." - John 3:16
                </p>
                <button class="bg-white text-blue-600 px-6 py-3 rounded-full font-semibold hover:bg-blue-50 transition duration-300" data-aos="fade-up" data-aos-delay="200">
                    Learn More
                </button>
            </div>
        </div>
    </section>

    <!-- About Section -->
    <section id="about" class="py-20 bg-white">
        <div class="container mx-auto px-6">
            <div class="max-w-4xl mx-auto text-center mb-16">
                <h2 class="text-3xl font-bold text-gray-800 mb-4" data-aos="fade-up">Who is Jesus?</h2>
                <div class="w-24 h-1 bg-blue-600 mx-auto mb-8" data-aos="fade-up" data-aos-delay="100"></div>
                <p class="text-gray-600 text-lg" data-aos="fade-up" data-aos-delay="200">
                    Jesus Christ is the Son of God who came to earth to save humanity from sin. He lived a perfect life, performed miracles, taught about God's kingdom, died on the cross for our sins, and rose again on the third day.
                </p>
            </div>
            <div class="grid md:grid-cols-3 gap-8">
                <div class="bg-blue-50 p-8 rounded-lg shadow-sm" data-aos="fade-up">
                    <div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mb-6">
                        <i data-feather="heart" class="text-blue-600"></i>
                    </div>
                    <h3 class="text-xl font-semibold mb-4 text-gray-800">God's Love</h3>
                    <p class="text-gray-600">
                        Jesus demonstrated God's unconditional love through His life, death, and resurrection.
                    </p>
                </div>
                <div class="bg-blue-50 p-8 rounded-lg shadow-sm" data-aos="fade-up" data-aos-delay="100">
                    <div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mb-6">
                        <i data-feather="shield" class="text-blue-600"></i>
                    </div>
                    <h3 class="text-xl font-semibold mb-4 text-gray-800">Our Savior</h3>
                    <p class="text-gray-600">
                        Through His sacrifice on the cross, Jesus offers salvation to all who believe in Him.
                    </p>
                </div>
                <div class="bg-blue-50 p-8 rounded-lg shadow-sm" data-aos="fade-up" data-aos-delay="200">
                    <div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mb-6">
                        <i data-feather="clock" class="text-blue-600"></i>
                    </div>
                    <h3 class="text-xl font-semibold mb-4 text-gray-800">Coming King</h3>
                    <p class="text-gray-600">
                        Jesus promised to return and establish His eternal kingdom where there will be no more pain or suffering.
                    </p>
                </div>
            </div>
        </div>
    </section>

    <!-- Teachings Section -->
    <section id="teachings" class="py-20 bg-gray-50">
        <div class="container mx-auto px-6">
            <div class="max-w-4xl mx-auto text-center mb-16">
                <h2 class="text-3xl font-bold text-gray-800 mb-4" data-aos="fade-up">Teachings of Jesus</h2>
                <div class="w-24 h-1 bg-blue-600 mx-auto mb-8" data-aos="fade-up" data-aos-delay="100"></div>
                <p class="text-gray-600 text-lg" data-aos="fade-up" data-aos-delay="200">
                    Jesus' teachings revolutionized the world with messages of love, forgiveness, and redemption.
                </p>
            </div>
            <div class="grid md:grid-cols-2 gap-8">
                <div class="bg-white p-8 rounded-lg shadow-sm" data-aos="fade-right">
                    <h3 class="text-xl font-semibold mb-4 text-gray-800">The Sermon on the Mount</h3>
                    <p class="text-gray-600 mb-4">
                        Jesus' most famous teaching includes the Beatitudes and the Lord's Prayer.
                    </p>
                    <ul class="space-y-2">
                        <li class="flex items-start">
                            <i data-feather="check" class="text-green-500 mr-2 mt-1"></i>
                            <span>"Blessed are the poor in spirit, for theirs is the kingdom of heaven."</span>
                        </li>
                        <li class="flex items-start">
                            <i data-feather="check" class="text-green-500 mr-2 mt-1"></i>
                            <span>"Love your enemies and pray for those who persecute you."</span>
                        </li>
                        <li class="flex items-start">
                            <i data-feather="check" class="text-green-500 mr-2 mt-1"></i>
                            <span>"Do not store up for yourselves treasures on earth..."</span>
                        </li>
                    </ul>
                </div>
                <div class="bg-white p-8 rounded-lg shadow-sm" data-aos="fade-left">
                    <h3 class="text-xl font-semibold mb-4 text-gray-800">Parables of Jesus</h3>
                    <p class="text-gray-600 mb-4">
                        Jesus used simple stories to convey profound spiritual truths.
                    </p>
                    <div class="grid grid-cols-2 gap-4">
                        <div class="bg-blue-50 p-4 rounded">
                            <h4 class="font-medium text-blue-600">Prodigal Son</h4>
                            <p class="text-sm text-gray-600">God's unconditional forgiveness</p>
                        </div>
                        <div class="bg-blue-50 p-4 rounded">
                            <h4 class="font-medium text-blue-600">Good Samaritan</h4>
                            <p class="text-sm text-gray-600">Loving your neighbor</p>
                        </div>
                        <div class="bg-blue-50 p-4 rounded">
                            <h4 class="font-medium text-blue-600">Mustard Seed</h4>
                            <p class="text-sm text-gray-600">Faith's potential</p>
                        </div>
                        <div class="bg-blue-50 p-4 rounded">
                            <h4 class="font-medium text-blue-600">Lost Sheep</h4>
                            <p class="text-sm text-gray-600">God's pursuit of sinners</p>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Miracles Section -->
    <section id="miracles" class="py-20 bg-white">
        <div class="container mx-auto px-6">
            <div class="max-w-4xl mx-auto text-center mb-16">
                <h2 class="text-3xl font-bold text-gray-800 mb-4" data-aos="fade-up">Miracles of Jesus</h2>
                <div class="w-24 h-1 bg-blue-600 mx-auto mb-8" data-aos="fade-up" data-aos-delay="100"></div>
                <p class="text-gray-600 text-lg" data-aos="fade-up" data-aos-delay="200">
                    Jesus performed many miracles demonstrating His divine power and compassion.
                </p>
            </div>
            <div class="grid md:grid-cols-3 gap-8">
                <div class="bg-gray-50 rounded-lg overflow-hidden shadow-sm" data-aos="fade-up">
                    <div class="h-48 bg-blue-100 flex items-center justify-center">
                        <i data-feather="eye" class="w-16 h-16 text-blue-600"></i>
                    </div>
                    <div class="p-6">
                        <h3 class="text-xl font-semibold mb-2">Healing the Blind</h3>
                        <p class="text-gray-600">
                            Jesus restored sight to the blind, showing His power over physical and spiritual blindness.
                        </p>
                    </div>
                </div>
                <div class="bg-gray-50 rounded-lg overflow-hidden shadow-sm" data-aos="fade-up" data-aos-delay="100">
                    <div class="h-48 bg-blue-100 flex items-center justify-center">
                        <i data-feather="wind" class="w-16 h-16 text-blue-600"></i>
                    </div>
                    <div class="p-6">
                        <h3 class="text-xl font-semibold mb-2">Calming the Storm</h3>
                        <p class="text-gray-600">
                            Jesus commanded the winds and waves, demonstrating His authority over nature.
                        </p>
                    </div>
                </div>
                <div class="bg-gray-50 rounded-lg overflow-hidden shadow-sm" data-aos="fade-up" data-aos-delay="200">
                    <div class="h-48 bg-blue-100 flex items-center justify-center">
                        <i data-feather="users" class="w-16 h-16 text-blue-600"></i>
                    </div>
                    <div class="p-6">
                        <h3 class="text-xl font-semibold mb-2">Feeding the 5000</h3>
                        <p class="text-gray-600">
                            With five loaves and two fish, Jesus fed a multitude, showing His provision.
                        </p>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Bible Verses Section -->
    <section id="verses" class="py-20 bg-gray-50">
        <div class="container mx-auto px-6">
            <div class="max-w-4xl mx-auto text-center mb-16">
                <h2 class="text-3xl font-bold text-gray-800 mb-4" data-aos="fade-up">Powerful Bible Verses</h2>
                <div class="w-24 h-1 bg-blue-600 mx-auto mb-8" data-aos="fade-up" data-aos-delay="100"></div>
                <p class="text-gray-600 text-lg" data-aos="fade-up" data-aos-delay="200">
                    Words of life, hope, and truth from Jesus and about Jesus.
                </p>
            </div>
            <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-6">
                <div class="verse-card bg-white p-6 rounded-lg shadow-sm hover:shadow-md" data-aos="fade-up">
                    <div class="text-blue-600 mb-4">
                        <i data-feather="book-open" class="inline mr-2"></i>
                        <span class="font-medium">John 14:6</span>
                    </div>
                    <p class="text-gray-700 italic mb-4">
                        "Jesus answered, 'I am the way and the truth and the life. No one comes to the Father except through me.'"
                    </p>
                    <div class="text-sm text-gray-500">Words of Jesus</div>
                </div>
                <div class="verse-card bg-white p-6 rounded-lg shadow-sm hover:shadow-md" data-aos="fade-up" data-aos-delay="100">
                    <div class="text-blue-600 mb-4">
                        <i data-feather="book-open" class="inline mr-2"></i>
                        <span class="font-medium">Matthew 11:28</span>
                    </div>
                    <p class="text-gray-700 italic mb-4">
                        "Come to me, all you who are weary and burdened, and I will give you rest."
                    </p>
                    <div class="text-sm text-gray-500">Invitation of Jesus</div>
                </div>
                <div class="verse-card bg-white p-6 rounded-lg shadow-sm hover:shadow-md" data-aos="fade-up" data-aos-delay="200">
                    <div class="text-blue-600 mb-4">
                        <i data-feather="book-open" class="inline mr-2"></i>
                        <span class="font-medium">Romans 5:8</span>
                    </div>
                    <p class="text-gray-700 italic mb-4">
                        "But God demonstrates his own love for us in this: While we were still sinners, Christ died for us."
                    </p>
                    <div class="text-sm text-gray-500">Paul's Letter</div>
                </div>
                <div class="verse-card bg-white p-6 rounded-lg shadow-sm hover:shadow-md" data-aos="fade-up">
                    <div class="text-blue-600 mb-4">
                        <i data-feather="book-open" class="inline mr-2"></i>
                        <span class="font-medium">Philippians 2:9-11</span>
                    </div>
                    <p class="text-gray-700 italic mb-4">
                        "Therefore God exalted him to the highest place and gave him the name that is above every name..."
                    </p>
                    <div class="text-sm text-gray-500">Christ's Exaltation</div>
                </div>
                <div class="verse-card bg-white p-6 rounded-lg shadow-sm hover:shadow-md" data-aos="fade-up" data-aos-delay="100">
                    <div class="text-blue-600 mb-4">
                        <i data-feather="book-open" class="inline mr-2"></i>
                        <span class="font-medium">John 1:1,14</span>
                    </div>
                    <p class="text-gray-700 italic mb-4">
                        "In the beginning was the Word, and the Word was with God, and the Word was God... The Word became flesh and made his dwelling among us."
                    </p>
                    <div class="text-sm text-gray-500">The Incarnation</div>
                </div>
                <div class="verse-card bg-white p-6 rounded-lg shadow-sm hover:shadow-md" data-aos="fade-up" data-aos-delay="200">
                    <div class="text-blue-600 mb-4">
                        <i data-feather="book-open" class="inline mr-2"></i>
                        <span class="font-medium">Revelation 22:12-13</span>
                    </div>
                    <p class="text-gray-700 italic mb-4">
                        "Look, I am coming soon! My reward is with me, and I will give to each person according to what they have done. I am the Alpha and the Omega..."
                    </p>
                    <div class="text-sm text-gray-500">Christ's Return</div>
                </div>
            </div>
        </div>
    </section>

    <!-- Call to Action -->
    <section class="py-20 hero-gradient text-white">
        <div class="container mx-auto px-6 text-center">
            <div class="max-w-2xl mx-auto">
                <h2 class="text-3xl font-bold mb-6" data-aos="fade-up">Do You Know Jesus?</h2>
                <p class="text-xl mb-8" data-aos="fade-up" data-aos-delay="100">
                    Jesus offers forgiveness, purpose, and eternal life to all who believe in Him.
                </p>
                <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
                    <button class="bg-white text-blue-600 px-6 py-3 rounded-full font-semibold hover:bg-blue-50 transition duration-300" data-aos="fade-up" data-aos-delay="200">
                        Accept Jesus Today
                    </button>
                    <button class="border-2 border-white text-white px-6 py-3 rounded-full font-semibold hover:bg-white hover:text-blue-600 transition duration-300" data-aos="fade-up" data-aos-delay="300">
                        Learn How to Follow Him
                    </button>
                </div>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="bg-gray-800 text-white py-12">
        <div class="container mx-auto px-6">
            <div class="grid md:grid-cols-4 gap-8">
                <div>
                    <div class="flex items-center space-x-2 mb-4">
                        <i data-feather="cross" class="text-blue-400"></i>
                        <span class="text-xl font-bold">Jesus Christ</span>
                    </div>
                    <p class="text-gray-400">
                        Sharing the love and truth of Jesus Christ with the world.
                    </p>
                </div>
                <div>
                    <h4 class="text-lg font-semibold mb-4">Quick Links</h4>
                    <ul class="space-y-2">
                        <li><a href="#about" class="text-gray-400 hover:text-white">About Jesus</a></li>
                        <li><a href="#teachings" class="text-gray-400 hover:text-white">His Teachings</a></li>
                        <li><a href="#miracles" class="text-gray-400 hover:text-white">Miracles</a></li>
                        <li><a href="#verses" class="text-gray-400 hover:text-white">Bible Verses</a></li>
                    </ul>
                </div>
                <div>
                    <h4 class="text-lg font-semibold mb-4">Resources</h4>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-gray-400 hover:text-white">Bible Study Tools</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Prayer Guide</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Christian Living</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Church Finder</a></li>
                    </ul>
                </div>
                <div>
                    <h4 class="text-lg font-semibold mb-4">Connect</h4>
                    <div class="flex space-x-4 mb-4">
                        <a href="#" class="text-gray-400 hover:text-white"><i data-feather="facebook"></i></a>
                        <a href="#" class="text-gray-400 hover:text-white"><i data-feather="twitter"></i></a>
                        <a href="#" class="text-gray-400 hover:text-white"><i data-feather="instagram"></i></a>
                        <a href="#" class="text-gray-400 hover:text-white"><i data-feather="youtube"></i></a>
                    </div>
                    <p class="text-gray-400">
                        Subscribe to our newsletter for updates
                    </p>
                </div>
            </div>
            <div class="border-t border-gray-700 mt-12 pt-8 text-center text-gray-400">
                <p>© 2023 Jesus Christ - All rights reserved.</p>
            </div>
        </div>
    </footer>

    <script>AOS.init();</script>
    <script>feather.replace();</script>
    <script>
        // Simple animation for verse cards
        document.querySelectorAll('.verse-card').forEach((card, index) => {
            card.addEventListener('mouseenter', () => {
                anime({
                    targets: card,
                    scale: 1.02,
                    duration: 300,
                    easing: 'easeInOutQuad'
                });
            });
            card.addEventListener('mouseleave', () => {
                anime({
                    targets: card,
                    scale: 1,
                    duration: 300,
                    easing: 'easeInOutQuad'
                });
            });
        });

        // Mobile menu toggle would go here
    </script>
</body>
</html>