Desgait commited on
Commit
397f146
·
verified ·
1 Parent(s): 533a2c1

Initial DeepSite commit

Browse files
Files changed (2) hide show
  1. README.md +8 -5
  2. index.html +365 -19
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Deepsite Project L4yk0
3
- emoji: 🐠
4
- colorFrom: purple
5
  colorTo: red
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: DeepSite Project
3
+ colorFrom: red
 
4
  colorTo: red
5
  sdk: static
6
+ emoji:
7
+ tags:
8
+ - deepsite-v4
9
  ---
10
 
11
+ # DeepSite Project
12
+
13
+ This project has been created with [DeepSite](https://deepsite.hf.co) AI Vibe Coding.
index.html CHANGED
@@ -1,19 +1,365 @@
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" class="scroll-smooth">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Webawarewise - Websites That Actually Work</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://unpkg.com/lucide@latest"></script>
9
+ <style>
10
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
11
+
12
+ body {
13
+ font-family: 'Inter', sans-serif;
14
+ }
15
+
16
+ .gradient-text {
17
+ background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
18
+ -webkit-background-clip: text;
19
+ -webkit-text-fill-color: transparent;
20
+ }
21
+
22
+ .hero-bg {
23
+ background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #1e293b 100%);
24
+ position: relative;
25
+ overflow: hidden;
26
+ }
27
+
28
+ .hero-bg::before {
29
+ content: '';
30
+ position: absolute;
31
+ top: 0;
32
+ right: 0;
33
+ width: 60%;
34
+ height: 100%;
35
+ background: url('http://static.photos/technology/1024x576/42') center/cover;
36
+ opacity: 0.3;
37
+ mix-blend-mode: luminosity;
38
+ }
39
+
40
+ .gauge-circle {
41
+ position: relative;
42
+ width: 300px;
43
+ height: 300px;
44
+ }
45
+
46
+ .gauge-bg {
47
+ fill: none;
48
+ stroke: rgba(255,255,255,0.1);
49
+ stroke-width: 8;
50
+ }
51
+
52
+ .gauge-progress {
53
+ fill: none;
54
+ stroke: url(#gaugeGradient);
55
+ stroke-width: 8;
56
+ stroke-linecap: round;
57
+ stroke-dasharray: 440;
58
+ stroke-dashoffset: 220;
59
+ transform: rotate(-90deg);
60
+ transform-origin: center;
61
+ animation: gaugeAnimation 2s ease-out forwards;
62
+ }
63
+
64
+ @keyframes gaugeAnimation {
65
+ to {
66
+ stroke-dashoffset: 66;
67
+ }
68
+ }
69
+
70
+ .faq-content {
71
+ max-height: 0;
72
+ overflow: hidden;
73
+ transition: max-height 0.3s ease-out;
74
+ }
75
+
76
+ .faq-content.active {
77
+ max-height: 500px;
78
+ }
79
+
80
+ .faq-icon {
81
+ transition: transform 0.3s ease;
82
+ }
83
+
84
+ .faq-icon.active {
85
+ transform: rotate(180deg);
86
+ }
87
+
88
+ .feature-card:hover {
89
+ transform: translateY(-5px);
90
+ transition: transform 0.3s ease;
91
+ }
92
+ </style>
93
+ </head>
94
+ <body class="antialiased text-slate-900 bg-white">
95
+
96
+ <!-- Navigation -->
97
+ <nav class="absolute top-0 left-0 right-0 z-50 py-6 px-6 lg:px-12">
98
+ <div class="max-w-7xl mx-auto flex justify-between items-center">
99
+ <a href="#" class="text-2xl font-bold text-white tracking-tight flex items-center gap-2">
100
+ <i data-lucide="box" class="w-6 h-6 text-cyan-400"></i>
101
+ Webawarewise
102
+ </a>
103
+ <a href="#work" class="text-white/90 hover:text-cyan-400 transition-colors font-medium">
104
+ My Work
105
+ </a>
106
+ </div>
107
+ </nav>
108
+
109
+ <!-- Hero Section -->
110
+ <section class="hero-bg min-h-screen relative flex items-center pt-20">
111
+ <div class="max-w-7xl mx-auto px-6 lg:px-12 w-full relative z-10">
112
+ <div class="grid lg:grid-cols-2 gap-12 items-center">
113
+ <div class="space-y-8">
114
+ <h1 class="text-4xl md:text-5xl lg:text-6xl font-bold text-white leading-tight">
115
+ A Website That Works—<br>
116
+ <span class="text-cyan-400">Not Just One</span><br>
117
+ That Looks Good
118
+ </h1>
119
+ <p class="text-lg text-slate-300 max-w-xl leading-relaxed">
120
+ Sick of "pretty" sites that flop? I build websites that actually solve your problem—by listening first, designing second.
121
+ </p>
122
+ <button class="bg-cyan-500 hover:bg-cyan-400 text-slate-900 font-bold py-4 px-8 rounded-full transition-all transform hover:scale-105 hover:shadow-lg hover:shadow-cyan-500/25 flex items-center gap-2 group">
123
+ <span>BOOK A 30 MINUTE CALL</span>
124
+ <i data-lucide="arrow-right" class="w-5 h-5 group-hover:translate-x-1 transition-transform"></i>
125
+ </button>
126
+ </div>
127
+
128
+ <div class="hidden lg:flex justify-center items-center relative">
129
+ <svg class="gauge-circle" viewBox="0 0 150 150">
130
+ <defs>
131
+ <linearGradient id="gaugeGradient" x1="0%" y1="0%" x2="100%" y2="0%">
132
+ <stop offset="0%" style="stop-color:#38bdf8;stop-opacity:1" />
133
+ <stop offset="100%" style="stop-color:#818cf8;stop-opacity:1" />
134
+ </linearGradient>
135
+ </defs>
136
+ <circle class="gauge-bg" cx="75" cy="75" r="70"></circle>
137
+ <circle class="gauge-progress" cx="75" cy="75" r="70"></circle>
138
+ </svg>
139
+ <div class="absolute inset-0 flex flex-col items-center justify-center">
140
+ <span class="text-6xl font-bold text-white tracking-tighter">0.5</span>
141
+ <span class="text-xl text-cyan-400 font-medium">seconds</span>
142
+ </div>
143
+ <div class="absolute -bottom-4 text-center w-full">
144
+ <span class="text-sm text-slate-400 uppercase tracking-widest">Load Time</span>
145
+ </div>
146
+ </div>
147
+ </div>
148
+ </div>
149
+ </section>
150
+
151
+ <!-- Tools Section -->
152
+ <section class="bg-gradient-to-r from-slate-200 via-slate-100 to-slate-200 py-20 lg:py-32">
153
+ <div class="max-w-7xl mx-auto px-6 lg:px-12">
154
+ <div class="grid lg:grid-cols-2 gap-12 lg:gap-20 items-center">
155
+ <h2 class="text-3xl md:text-4xl lg:text-5xl font-bold text-slate-900 leading-tight">
156
+ The Right Tools. The Right Fit. The Right Website.
157
+ </h2>
158
+ <p class="text-lg text-slate-600 leading-relaxed">
159
+ At Webawarewise, I start with your actual goal—then choose the tools that match.
160
+ </p>
161
+ </div>
162
+ </div>
163
+ </section>
164
+
165
+ <!-- Features Section -->
166
+ <section class="bg-[#0f172a] py-20 lg:py-32">
167
+ <div class="max-w-7xl mx-auto px-6 lg:px-12">
168
+ <div class="grid md:grid-cols-3 gap-8 lg:gap-12">
169
+ <!-- Feature 1 -->
170
+ <div class="feature-card text-center p-6">
171
+ <div class="w-16 h-16 bg-cyan-500/20 rounded-2xl flex items-center justify-center mx-auto mb-6">
172
+ <i data-lucide="settings" class="w-8 h-8 text-cyan-400"></i>
173
+ </div>
174
+ <h3 class="text-xl font-bold text-white mb-4">
175
+ Your Site Will Do the Job, Not Just Look the Part
176
+ </h3>
177
+ <p class="text-slate-400 leading-relaxed">
178
+ I choose the platform based on your goal—not what's easiest for me.
179
+ </p>
180
+ </div>
181
+
182
+ <!-- Feature 2 -->
183
+ <div class="feature-card text-center p-6">
184
+ <div class="w-16 h-16 bg-cyan-500/20 rounded-2xl flex items-center justify-center mx-auto mb-6">
185
+ <i data-lucide="eye" class="w-8 h-8 text-cyan-400"></i>
186
+ </div>
187
+ <h3 class="text-xl font-bold text-white mb-4">
188
+ You'll See It Before You Sign Off
189
+ </h3>
190
+ <p class="text-slate-400 leading-relaxed">
191
+ Mockups let you preview and tweak everything before launch—no surprises.
192
+ </p>
193
+ </div>
194
+
195
+ <!-- Feature 3 -->
196
+ <div class="feature-card text-center p-6">
197
+ <div class="w-16 h-16 bg-cyan-500/20 rounded-2xl flex items-center justify-center mx-auto mb-6">
198
+ <i data-lucide="message-circle" class="w-8 h-8 text-cyan-400"></i>
199
+ </div>
200
+ <h3 class="text-xl font-bold text-white mb-4">
201
+ You'll Get Honest Advice That Actually Helps
202
+ </h3>
203
+ <p class="text-slate-400 leading-relaxed">
204
+ If you don't need something, I'll say so. If it's worth it, I'll explain why—in plain English.
205
+ </p>
206
+ </div>
207
+ </div>
208
+ </div>
209
+ </section>
210
+
211
+ <!-- FAQ Section -->
212
+ <section class="bg-[#0f172a] py-20 lg:py-32 border-t border-slate-800">
213
+ <div class="max-w-4xl mx-auto px-6 lg:px-12">
214
+ <h2 class="text-4xl font-bold text-white text-center mb-16">FAQ</h2>
215
+
216
+ <div class="space-y-4">
217
+ <!-- FAQ Item 1 (Active by default) -->
218
+ <div class="faq-item border-b border-slate-700 pb-4">
219
+ <button class="faq-toggle w-full flex justify-between items-center py-4 text-left group">
220
+ <h3 class="text-lg font-semibold text-white group-hover:text-cyan-400 transition-colors pr-8">
221
+ How long will it take to design and develop my website?
222
+ </h3>
223
+ <i data-lucide="chevron-down" class="faq-icon active w-5 h-5 text-slate-400 flex-shrink-0"></i>
224
+ </button>
225
+ <div class="faq-content active">
226
+ <p class="text-slate-400 pb-4 leading-relaxed">
227
+ The timeline for each project varies based on the complexity and specific requirements of your website. On average, it will take about a week. I prioritize thorough planning and quality execution to ensure your website meets your expectations and business goals.
228
+ </p>
229
+ </div>
230
+ </div>
231
+
232
+ <!-- FAQ Item 2 -->
233
+ <div class="faq-item border-b border-slate-700 pb-4">
234
+ <button class="faq-toggle w-full flex justify-between items-center py-4 text-left group">
235
+ <h3 class="text-lg font-semibold text-white group-hover:text-cyan-400 transition-colors pr-8">
236
+ What Technologies Will My Website Be Built With?
237
+ </h3>
238
+ <i data-lucide="chevron-down" class="faq-icon w-5 h-5 text-slate-400 flex-shrink-0"></i>
239
+ </button>
240
+ <div class="faq-content">
241
+ <p class="text-slate-400 pb-4 leading-relaxed">
242
+ I select the best technologies based on your specific needs—whether that's a custom HTML/CSS/JavaScript solution for maximum performance, or platforms like WordPress or Webflow for easier content management. Every decision is tailored to your goals.
243
+ </p>
244
+ </div>
245
+ </div>
246
+
247
+ <!-- FAQ Item 3 -->
248
+ <div class="faq-item border-b border-slate-700 pb-4">
249
+ <button class="faq-toggle w-full flex justify-between items-center py-4 text-left group">
250
+ <h3 class="text-lg font-semibold text-white group-hover:text-cyan-400 transition-colors pr-8">
251
+ Will my website be mobile-friendly and responsive?
252
+ </h3>
253
+ <i data-lucide="chevron-down" class="faq-icon w-5 h-5 text-slate-400 flex-shrink-0"></i>
254
+ </button>
255
+ <div class="faq-content">
256
+ <p class="text-slate-400 pb-4 leading-relaxed">
257
+ Absolutely. Every website I build is fully responsive and optimized for all devices—desktops, tablets, and smartphones. Mobile-first design is standard practice, ensuring your site looks great and functions perfectly on any screen size.
258
+ </p>
259
+ </div>
260
+ </div>
261
+
262
+ <!-- FAQ Item 4 -->
263
+ <div class="faq-item border-b border-slate-700 pb-4">
264
+ <button class="faq-toggle w-full flex justify-between items-center py-4 text-left group">
265
+ <h3 class="text-lg font-semibold text-white group-hover:text-cyan-400 transition-colors pr-8">
266
+ Do you provide ongoing support and maintenance?
267
+ </h3>
268
+ <i data-lucide="chevron-down" class="faq-icon w-5 h-5 text-slate-400 flex-shrink-0"></i>
269
+ </button>
270
+ <div class="faq-content">
271
+ <p class="text-slate-400 pb-4 leading-relaxed">
272
+ Yes, I offer maintenance packages to keep your website secure, updated, and running smoothly. This includes regular backups, security updates, content updates, and technical support whenever you need it.
273
+ </p>
274
+ </div>
275
+ </div>
276
+
277
+ <!-- FAQ Item 5 -->
278
+ <div class="faq-item border-b border-slate-700 pb-4">
279
+ <button class="faq-toggle w-full flex justify-between items-center py-4 text-left group">
280
+ <h3 class="text-lg font-semibold text-white group-hover:text-cyan-400 transition-colors pr-8">
281
+ How involved do I need to be in the process?
282
+ </h3>
283
+ <i data-lucide="chevron-down" class="faq-icon w-5 h-5 text-slate-400 flex-shrink-0"></i>
284
+ </button>
285
+ <div class="faq-content">
286
+ <p class="text-slate-400 pb-4 leading-relaxed">
287
+ Your involvement is crucial during key phases—initial discovery, design approval, and content review. However, I handle all the technical heavy lifting. We'll have check-ins at major milestones, but I strive to make the process as seamless as possible for you.
288
+ </p>
289
+ </div>
290
+ </div>
291
+
292
+ <!-- FAQ Item 6 -->
293
+ <div class="faq-item border-b border-slate-700 pb-4">
294
+ <button class="faq-toggle w-full flex justify-between items-center py-4 text-left group">
295
+ <h3 class="text-lg font-semibold text-white group-hover:text-cyan-400 transition-colors pr-8">
296
+ What if I need changes or updates to my site after it's launched?
297
+ </h3>
298
+ <i data-lucide="chevron-down" class="faq-icon w-5 h-5 text-slate-400 flex-shrink-0"></i>
299
+ </button>
300
+ <div class="faq-content">
301
+ <p class="text-slate-400 pb-4 leading-relaxed">
302
+ Post-launch updates are handled through maintenance packages or on an as-needed basis. Minor updates are typically turned around quickly. For larger feature additions, we'll discuss scope and timeline to ensure everything meets your evolving needs.
303
+ </p>
304
+ </div>
305
+ </div>
306
+ </div>
307
+ </div>
308
+ </section>
309
+
310
+ <!-- Footer -->
311
+ <footer class="bg-[#0a0f1c] py-12 border-t border-slate-800">
312
+ <div class="max-w-7xl mx-auto px-6 lg:px-12">
313
+ <div class="flex flex-col md:flex-row justify-between items-center gap-6">
314
+ <div class="flex items-center gap-2">
315
+ <i data-lucide="box" class="w-6 h-6 text-cyan-400"></i>
316
+ <span class="text-2xl font-bold text-white tracking-tight">Webawarewise</span>
317
+ </div>
318
+
319
+ <p class="text-slate-500 text-sm">
320
+ © 2025 Lavar Storr. All right reserved.
321
+ </p>
322
+
323
+ <div class="flex items-center gap-6">
324
+ <a href="#" class="text-slate-400 hover:text-cyan-400 transition-colors">
325
+ <i data-lucide="instagram" class="w-6 h-6"></i>
326
+ </a>
327
+ <a href="#" class="text-slate-400 hover:text-cyan-400 transition-colors">
328
+ <i data-lucide="twitter" class="w-6 h-6"></i>
329
+ </a>
330
+ <a href="#" class="text-slate-400 hover:text-cyan-400 transition-colors">
331
+ <i data-lucide="linkedin" class="w-6 h-6"></i>
332
+ </a>
333
+ </div>
334
+ </div>
335
+ </div>
336
+ </footer>
337
+
338
+ <script>
339
+ // Initialize Lucide icons
340
+ lucide.createIcons();
341
+
342
+ // FAQ Accordion functionality
343
+ document.querySelectorAll('.faq-toggle').forEach(button => {
344
+ button.addEventListener('click', () => {
345
+ const item = button.parentElement;
346
+ const content = item.querySelector('.faq-content');
347
+ const icon = item.querySelector('.faq-icon');
348
+
349
+ // Close all other open FAQs
350
+ document.querySelectorAll('.faq-item').forEach(otherItem => {
351
+ if (otherItem !== item) {
352
+ otherItem.querySelector('.faq-content').classList.remove('active');
353
+ otherItem.querySelector('.faq-icon').classList.remove('active');
354
+ }
355
+ });
356
+
357
+ // Toggle current item
358
+ content.classList.toggle('active');
359
+ icon.classList.toggle('active');
360
+ });
361
+ });
362
+ </script>
363
+ <script src="https://deepsite.hf.co/deepsite-badge.js"></script>
364
+ </body>
365
+ </html>