stopsatgreen commited on
Commit
a3f7fa0
·
verified ·
1 Parent(s): 3a097d3

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +6 -4
  2. index.html +358 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Faith Test Website
3
- emoji: 🐢
4
- colorFrom: pink
5
  colorTo: gray
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: faith-test-website
3
+ emoji: 🐳
4
+ colorFrom: blue
5
  colorTo: gray
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,358 @@
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>faith | AI Creative Agency</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
+ @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Montserrat', sans-serif;
14
+ background-color: #f8f9fa;
15
+ color: #333;
16
+ }
17
+
18
+ .gradient-bg {
19
+ background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 50%, #ffd26f 100%);
20
+ }
21
+
22
+ .work-card {
23
+ transition: all 0.3s ease;
24
+ }
25
+
26
+ .work-card:hover {
27
+ transform: translateY(-10px);
28
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
29
+ }
30
+
31
+ .carousel-item {
32
+ opacity: 0;
33
+ transition: opacity 0.5s ease;
34
+ }
35
+
36
+ .carousel-item.active {
37
+ opacity: 1;
38
+ }
39
+ </style>
40
+ </head>
41
+ <body>
42
+ <!-- Navigation -->
43
+ <nav class="bg-white/80 backdrop-blur-md fixed w-full z-50 shadow-sm">
44
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
45
+ <div class="flex justify-between h-20 items-center">
46
+ <div class="flex-shrink-0 flex items-center">
47
+ <span class="text-2xl font-bold text-orange-500">faith</span>
48
+ </div>
49
+ <div class="hidden md:block">
50
+ <div class="ml-10 flex items-baseline space-x-8">
51
+ <a href="#home" class="text-gray-700 hover:text-orange-500 px-3 py-2 rounded-md text-sm font-medium">Home</a>
52
+ <a href="#services" class="text-gray-700 hover:text-orange-500 px-3 py-2 rounded-md text-sm font-medium">Services</a>
53
+ <a href="#work" class="text-gray-700 hover:text-orange-500 px-3 py-2 rounded-md text-sm font-medium">Work</a>
54
+ <a href="#contact" class="text-gray-700 hover:text-orange-500 px-3 py-2 rounded-md text-sm font-medium">Contact</a>
55
+ </div>
56
+ </div>
57
+ <div class="md:hidden">
58
+ <button id="mobile-menu-button" class="text-gray-700 hover:text-orange-500 focus:outline-none">
59
+ <i class="fas fa-bars text-xl"></i>
60
+ </button>
61
+ </div>
62
+ </div>
63
+ </div>
64
+
65
+ <!-- Mobile menu -->
66
+ <div id="mobile-menu" class="md:hidden hidden bg-white/95 backdrop-blur-md">
67
+ <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
68
+ <a href="#home" class="text-gray-700 hover:text-orange-500 block px-3 py-2 rounded-md text-base font-medium">Home</a>
69
+ <a href="#services" class="text-gray-700 hover:text-orange-500 block px-3 py-2 rounded-md text-base font-medium">Services</a>
70
+ <a href="#work" class="text-gray-700 hover:text-orange-500 block px-3 py-2 rounded-md text-base font-medium">Work</a>
71
+ <a href="#contact" class="text-gray-700 hover:text-orange-500 block px-3 py-2 rounded-md text-base font-medium">Contact</a>
72
+ </div>
73
+ </div>
74
+ </nav>
75
+
76
+ <!-- Hero Section -->
77
+ <section id="home" class="relative h-screen">
78
+ <div class="absolute inset-0 overflow-hidden">
79
+ <img src="https://images.unsplash.com/photo-1507525428033-b723cf961d3e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80"
80
+ alt="AI Creativity"
81
+ class="w-full h-full object-cover">
82
+ <div class="absolute inset-0 bg-gradient-to-b from-black/20 to-black/40"></div>
83
+ </div>
84
+ <div class="relative h-full flex items-center">
85
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center md:text-left">
86
+ <div class="max-w-2xl mx-auto md:mx-0">
87
+ <h1 class="text-4xl md:text-6xl font-bold text-white mb-6">We believe in the <span class="text-orange-400">power</span> of AI creativity</h1>
88
+ <p class="text-xl text-white mb-8">faith is an AI creative agency that blends human imagination with machine intelligence to create extraordinary digital experiences.</p>
89
+ <div class="flex flex-col sm:flex-row justify-center md:justify-start space-y-4 sm:space-y-0 sm:space-x-4">
90
+ <a href="#work" class="bg-orange-500 hover:bg-orange-600 text-white font-bold py-3 px-6 rounded-full transition duration-300">View Our Work</a>
91
+ <a href="#contact" class="bg-white hover:bg-gray-100 text-orange-500 font-bold py-3 px-6 rounded-full transition duration-300">Get in Touch</a>
92
+ </div>
93
+ </div>
94
+ </div>
95
+ </div>
96
+ </section>
97
+
98
+ <!-- Services Section -->
99
+ <section id="services" class="py-20 px-4 sm:px-6 lg:px-8 bg-white">
100
+ <div class="max-w-7xl mx-auto">
101
+ <div class="text-center mb-16">
102
+ <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Our <span class="text-orange-500">Services</span></h2>
103
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">We offer a comprehensive suite of AI-powered creative services to help your brand stand out.</p>
104
+ </div>
105
+
106
+ <div class="grid md:grid-cols-3 gap-10">
107
+ <div class="bg-gradient-to-br from-pink-50 to-orange-50 p-8 rounded-2xl shadow-sm hover:shadow-md transition duration-300">
108
+ <div class="w-16 h-16 bg-orange-500 rounded-full flex items-center justify-center text-white mb-6">
109
+ <i class="fas fa-brain text-2xl"></i>
110
+ </div>
111
+ <h3 class="text-xl font-bold text-gray-800 mb-3">AI Strategy</h3>
112
+ <p class="text-gray-600">We help you develop a comprehensive AI strategy that aligns with your business goals and creative vision.</p>
113
+ </div>
114
+
115
+ <div class="bg-gradient-to-br from-pink-50 to-orange-50 p-8 rounded-2xl shadow-sm hover:shadow-md transition duration-300">
116
+ <div class="w-16 h-16 bg-orange-500 rounded-full flex items-center justify-center text-white mb-6">
117
+ <i class="fas fa-paint-brush text-2xl"></i>
118
+ </div>
119
+ <h3 class="text-xl font-bold text-gray-800 mb-3">Generative Design</h3>
120
+ <p class="text-gray-600">Our AI-powered design tools create unique visual identities, logos, and branding materials tailored to your needs.</p>
121
+ </div>
122
+
123
+ <div class="bg-gradient-to-br from-pink-50 to-orange-50 p-8 rounded-2xl shadow-sm hover:shadow-md transition duration-300">
124
+ <div class="w-16 h-16 bg-orange-500 rounded-full flex items-center justify-center text-white mb-6">
125
+ <i class="fas fa-film text-2xl"></i>
126
+ </div>
127
+ <h3 class="text-xl font-bold text-gray-800 mb-3">AI Video Production</h3>
128
+ <p class="text-gray-600">From scriptwriting to post-production, our AI tools enhance every step of the video creation process.</p>
129
+ </div>
130
+
131
+ <div class="bg-gradient-to-br from-pink-50 to-orange-50 p-8 rounded-2xl shadow-sm hover:shadow-md transition duration-300">
132
+ <div class="w-16 h-16 bg-orange-500 rounded-full flex items-center justify-center text-white mb-6">
133
+ <i class="fas fa-robot text-2xl"></i>
134
+ </div>
135
+ <h3 class="text-xl font-bold text-gray-800 mb-3">Chatbot Development</h3>
136
+ <p class="text-gray-600">Create engaging, personality-driven chatbots that provide exceptional customer experiences.</p>
137
+ </div>
138
+
139
+ <div class="bg-gradient-to-br from-pink-50 to-orange-50 p-8 rounded-2xl shadow-sm hover:shadow-md transition duration-300">
140
+ <div class="w-16 h-16 bg-orange-500 rounded-full flex items-center justify-center text-white mb-6">
141
+ <i class="fas fa-music text-2xl"></i>
142
+ </div>
143
+ <h3 class="text-xl font-bold text-gray-800 mb-3">AI Music Composition</h3>
144
+ <p class="text-gray-600">Original, royalty-free music composed by AI to perfectly match your brand's tone and messaging.</p>
145
+ </div>
146
+
147
+ <div class="bg-gradient-to-br from-pink-50 to-orange-50 p-8 rounded-2xl shadow-sm hover:shadow-md transition duration-300">
148
+ <div class="w-16 h-16 bg-orange-500 rounded-full flex items-center justify-center text-white mb-6">
149
+ <i class="fas fa-chart-line text-2xl"></i>
150
+ </div>
151
+ <h3 class="text-xl font-bold text-gray-800 mb-3">Predictive Analytics</h3>
152
+ <p class="text-gray-600">Leverage AI to predict market trends and consumer behavior, informing your creative decisions.</p>
153
+ </div>
154
+ </div>
155
+ </div>
156
+ </section>
157
+
158
+ <!-- Work Carousel Section -->
159
+ <section id="work" class="py-20 px-4 sm:px-6 lg:px-8 bg-gradient-to-b from-pink-50 to-orange-50">
160
+ <div class="max-w-7xl mx-auto">
161
+ <div class="text-center mb-16">
162
+ <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Featured <span class="text-orange-500">Work</span></h2>
163
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">Explore some of our recent projects that showcase the power of AI creativity.</p>
164
+ </div>
165
+
166
+ <div class="relative overflow-hidden">
167
+ <div class="carousel-container flex transition-transform duration-500 ease-in-out">
168
+ <div class="carousel-item active w-full md:w-1/2 lg:w-1/3 px-4">
169
+ <div class="work-card bg-white rounded-2xl overflow-hidden shadow-md">
170
+ <img src="https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Project 1" class="w-full h-64 object-cover">
171
+ <div class="p-6">
172
+ <h3 class="text-xl font-bold text-gray-800 mb-2">Neural Branding for TechCo</h3>
173
+ <p class="text-gray-600 mb-4">Created a complete AI-generated visual identity system for a fast-growing tech startup.</p>
174
+ <span class="inline-block bg-orange-100 text-orange-500 text-sm font-semibold px-3 py-1 rounded-full">Branding</span>
175
+ </div>
176
+ </div>
177
+ </div>
178
+
179
+ <div class="carousel-item w-full md:w-1/2 lg:w-1/3 px-4">
180
+ <div class="work-card bg-white rounded-2xl overflow-hidden shadow-md">
181
+ <img src="https://images.unsplash.com/photo-1626785774573-4b799315345d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Project 2" class="w-full h-64 object-cover">
182
+ <div class="p-6">
183
+ <h3 class="text-xl font-bold text-gray-800 mb-2">AI-Powered E-commerce</h3>
184
+ <p class="text-gray-600 mb-4">Developed personalized shopping experiences using machine learning algorithms.</p>
185
+ <span class="inline-block bg-orange-100 text-orange-500 text-sm font-semibold px-3 py-1 rounded-full">E-commerce</span>
186
+ </div>
187
+ </div>
188
+ </div>
189
+
190
+ <div class="carousel-item w-full md:w-1/2 lg:w-1/3 px-4">
191
+ <div class="work-card bg-white rounded-2xl overflow-hidden shadow-md">
192
+ <img src="https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Project 3" class="w-full h-64 object-cover">
193
+ <div class="p-6">
194
+ <h3 class="text-xl font-bold text-gray-800 mb-2">Generative Art Installation</h3>
195
+ <p class="text-gray-600 mb-4">Created an interactive art piece that evolves based on viewer engagement.</p>
196
+ <span class="inline-block bg-orange-100 text-orange-500 text-sm font-semibold px-3 py-1 rounded-full">Art</span>
197
+ </div>
198
+ </div>
199
+ </div>
200
+ </div>
201
+
202
+ <div class="flex justify-center mt-10 space-x-4">
203
+ <button id="prev-btn" class="bg-white hover:bg-gray-100 text-orange-500 font-bold w-12 h-12 rounded-full shadow-md transition duration-300">
204
+ <i class="fas fa-chevron-left"></i>
205
+ </button>
206
+ <button id="next-btn" class="bg-white hover:bg-gray-100 text-orange-500 font-bold w-12 h-12 rounded-full shadow-md transition duration-300">
207
+ <i class="fas fa-chevron-right"></i>
208
+ </button>
209
+ </div>
210
+ </div>
211
+ </div>
212
+ </section>
213
+
214
+ <!-- Contact Section -->
215
+ <section id="contact" class="py-20 px-4 sm:px-6 lg:px-8 bg-white">
216
+ <div class="max-w-7xl mx-auto">
217
+ <div class="md:flex items-center">
218
+ <div class="md:w-1/2 mb-10 md:mb-0">
219
+ <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-6">Let's <span class="text-orange-500">Create</span> Together</h2>
220
+ <p class="text-xl text-gray-600 mb-8">Ready to explore how AI can transform your creative projects? Get in touch with our team.</p>
221
+
222
+ <div class="space-y-6">
223
+ <div class="flex items-start">
224
+ <div class="flex-shrink-0">
225
+ <div class="w-12 h-12 bg-orange-100 rounded-full flex items-center justify-center text-orange-500">
226
+ <i class="fas fa-envelope text-xl"></i>
227
+ </div>
228
+ </div>
229
+ <div class="ml-4">
230
+ <h3 class="text-lg font-semibold text-gray-800">Email Us</h3>
231
+ <p class="text-gray-600">[email protected]</p>
232
+ </div>
233
+ </div>
234
+
235
+ <div class="flex items-start">
236
+ <div class="flex-shrink-0">
237
+ <div class="w-12 h-12 bg-orange-100 rounded-full flex items-center justify-center text-orange-500">
238
+ <i class="fas fa-phone-alt text-xl"></i>
239
+ </div>
240
+ </div>
241
+ <div class="ml-4">
242
+ <h3 class="text-lg font-semibold text-gray-800">Call Us</h3>
243
+ <p class="text-gray-600">+1 (555) 123-4567</p>
244
+ </div>
245
+ </div>
246
+
247
+ <div class="flex items-start">
248
+ <div class="flex-shrink-0">
249
+ <div class="w-12 h-12 bg-orange-100 rounded-full flex items-center justify-center text-orange-500">
250
+ <i class="fas fa-map-marker-alt text-xl"></i>
251
+ </div>
252
+ </div>
253
+ <div class="ml-4">
254
+ <h3 class="text-lg font-semibold text-gray-800">Visit Us</h3>
255
+ <p class="text-gray-600">123 AI Avenue, Creative District<br>San Francisco, CA 94107</p>
256
+ </div>
257
+ </div>
258
+ </div>
259
+
260
+ <div class="mt-8 flex space-x-4">
261
+ <a href="#" class="w-10 h-10 bg-orange-100 hover:bg-orange-200 rounded-full flex items-center justify-center text-orange-500 transition duration-300">
262
+ <i class="fab fa-twitter"></i>
263
+ </a>
264
+ <a href="#" class="w-10 h-10 bg-orange-100 hover:bg-orange-200 rounded-full flex items-center justify-center text-orange-500 transition duration-300">
265
+ <i class="fab fa-instagram"></i>
266
+ </a>
267
+ <a href="#" class="w-10 h-10 bg-orange-100 hover:bg-orange-200 rounded-full flex items-center justify-center text-orange-500 transition duration-300">
268
+ <i class="fab fa-linkedin-in"></i>
269
+ </a>
270
+ <a href="#" class="w-10 h-10 bg-orange-100 hover:bg-orange-200 rounded-full flex items-center justify-center text-orange-500 transition duration-300">
271
+ <i class="fab fa-dribbble"></i>
272
+ </a>
273
+ </div>
274
+ </div>
275
+
276
+ <div class="md:w-1/2">
277
+ <form class="bg-gradient-to-br from-pink-50 to-orange-50 p-8 rounded-2xl shadow-md">
278
+ <div class="mb-6">
279
+ <label for="name" class="block text-gray-700 font-medium mb-2">Your Name</label>
280
+ <input type="text" id="name" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-orange-500 focus:border-transparent" placeholder="John Doe">
281
+ </div>
282
+
283
+ <div class="mb-6">
284
+ <label for="email" class="block text-gray-700 font-medium mb-2">Email Address</label>
285
+ <input type="email" id="email" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-orange-500 focus:border-transparent" placeholder="[email protected]">
286
+ </div>
287
+
288
+ <div class="mb-6">
289
+ <label for="service" class="block text-gray-700 font-medium mb-2">Service Interested In</label>
290
+ <select id="service" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-orange-500 focus:border-transparent">
291
+ <option value="">Select a service</option>
292
+ <option value="strategy">AI Strategy</option>
293
+ <option value="design">Generative Design</option>
294
+ <option value="video">AI Video Production</option>
295
+ <option value="chatbot">Chatbot Development</option>
296
+ <option value="music">AI Music Composition</option>
297
+ <option value="analytics">Predictive Analytics</option>
298
+ </select>
299
+ </div>
300
+
301
+ <div class="mb-6">
302
+ <label for="message" class="block text-gray-700 font-medium mb-2">Your Message</label>
303
+ <textarea id="message" rows="4" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-orange-500 focus:border-transparent" placeholder="Tell us about your project..."></textarea>
304
+ </div>
305
+
306
+ <button type="submit" class="w-full bg-orange-500 hover:bg-orange-600 text-white font-bold py-3 px-6 rounded-lg transition duration-300">Send Message</button>
307
+ </form>
308
+ </div>
309
+ </div>
310
+ </div>
311
+ </section>
312
+
313
+ <!-- Team Section -->
314
+ <section class="py-20 px-4 sm:px-6 lg:px-8 bg-gradient-to-b from-pink-50 to-orange-50">
315
+ <div class="max-w-7xl mx-auto">
316
+ <div class="text-center mb-16">
317
+ <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Meet Our <span class="text-orange-500">Team</span></h2>
318
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">A diverse group of creatives, engineers, and AI specialists passionate about pushing boundaries.</p>
319
+ </div>
320
+
321
+ <div class="relative rounded-3xl overflow-hidden shadow-2xl">
322
+ <img src="https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1800&q=80" alt="faith team" class="w-full h-auto">
323
+ <div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end">
324
+ <div class="p-8 text-white">
325
+ <h3 class="text-2xl font-bold mb-2">The faith Collective</h3>
326
+ <p class="max-w-2xl">We believe the most powerful creativity happens at the intersection of human imagination and artificial intelligence.</p>
327
+ </div>
328
+ </div>
329
+ </div>
330
+ </div>
331
+ </section>
332
+
333
+ <!-- Footer -->
334
+ <footer class="bg-gray-900 text-white py-12 px-4 sm:px-6 lg:px-8">
335
+ <div class="max-w-7xl mx-auto">
336
+ <div class="md:flex md:justify-between">
337
+ <div class="mb-8 md:mb-0">
338
+ <h3 class="text-2xl font-bold text-orange-500 mb-4">faith</h3>
339
+ <p class="text-gray-400 max-w-md">Blending human creativity with artificial intelligence to build the future of digital experiences.</p>
340
+ </div>
341
+
342
+ <div class="grid grid-cols-2 gap-8 sm:grid-cols-3">
343
+ <div>
344
+ <h4 class="text-sm font-semibold text-gray-300 uppercase tracking-wider mb-4">Navigation</h4>
345
+ <ul class="space-y-2">
346
+ <li><a href="#home" class="text-gray-400 hover:text-orange-500 transition duration-300">Home</a></li>
347
+ <li><a href="#services" class="text-gray-400 hover:text-orange-500 transition duration-300">Services</a></li>
348
+ <li><a href="#work" class="text-gray-400 hover:text-orange-500 transition duration-300">Work</a></li>
349
+ <li><a href="#contact" class="text-gray-400 hover:text-orange-500 transition duration-300">Contact</a></li>
350
+ </ul>
351
+ </div>
352
+
353
+ <div>
354
+ <h4 class="text-sm font-semibold text-gray-300 uppercase tracking-wider mb-4">Services</h4>
355
+ <ul class="space-y-2">
356
+ <li
357
+ <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=stopsatgreen/faith-test-website" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
358
+ </html>