oldmonk69 commited on
Commit
1668438
·
verified ·
1 Parent(s): a2347d1

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +216 -256
index.html CHANGED
@@ -1,44 +1,31 @@
1
  <!-- =========================================================
2
  # File: index.html
3
- # NeuralNomadAI — Fully Developed Website (HTML + CSS + JS)
4
- # Features:
5
- # - Mobile-first responsive layout (Tailwind via CDN)
6
- # - Accessible navigation + keyboard support
7
- # - Dark mode with localStorage
8
- # - Section router + hash-based nav + scroll spy
9
- # - Portfolio filter + image lightbox
10
- # - Pricing table
11
- # - Testimonials
12
- # - Contact form (Formspree) with client-side validation
13
- # - SEO meta tags, Open Graph, JSON-LD schema
14
- # - Lazy-loading images, reduced motion support
15
  # ========================================================= -->
16
  <!DOCTYPE html>
17
  <html lang="en" class="scroll-smooth">
18
  <head>
19
  <meta charset="utf-8" />
20
  <meta name="viewport" content="width=device-width, initial-scale=1" />
21
- <title>NeuralNomadAI — AI Imagery & Creative Automation</title>
22
 
23
- <!-- SEO -->
24
- <meta name="description" content="NeuralNomadAI crafts stunning AI-generated visuals, prompt engineering, and creative automation for creators, brands, and marketers." />
25
- <meta name="keywords" content="AI images, prompt engineering, creative automation, Stable Diffusion, Midjourney, DALL·E, brand assets" />
26
- <link rel="canonical" href="https://example.com/" />
27
 
28
  <!-- Open Graph -->
29
- <meta property="og:title" content="NeuralNomadAI — AI Imagery & Creative Automation" />
30
- <meta property="og:description" content="Get stunning AI images, documented prompts, and automation. Fast turnaround, unlimited revisions." />
31
  <meta property="og:type" content="website" />
32
  <meta property="og:url" content="https://example.com/" />
33
  <meta property="og:image" content="https://images.unsplash.com/photo-1526378722484-bd91ca387e72?q=80&w=1600&auto=format&fit=crop" />
34
 
35
  <!-- Twitter -->
36
  <meta name="twitter:card" content="summary_large_image" />
37
- <meta name="twitter:title" content="NeuralNomadAI — AI Imagery & Creative Automation" />
38
- <meta name="twitter:description" content="Get stunning AI images, documented prompts, and automation. Fast turnaround, unlimited revisions." />
39
  <meta name="twitter:image" content="https://images.unsplash.com/photo-1526378722484-bd91ca387e72?q=80&w=1600&auto=format&fit=crop" />
40
 
41
- <!-- Favicon (replace with your own) -->
42
  <link rel="icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='128' height='128'%3E%3Ctext y='1em' font-size='96'%3E🤖%3C/text%3E%3C/svg%3E">
43
 
44
  <!-- Fonts -->
@@ -53,48 +40,36 @@
53
  darkMode: 'class',
54
  theme: {
55
  extend: {
56
- fontFamily: { display: ['Space Grotesk', 'system-ui', 'ui-sans-serif', 'sans-serif'] },
57
- colors: {
58
- primary: '#1193d4',
59
- bgLight: '#f6f7f8',
60
- bgDark: '#0c1418'
61
- },
62
- boxShadow: {
63
- soft: '0 8px 30px rgba(2, 12, 27, 0.08)'
64
- }
65
  }
66
  }
67
- };
68
  </script>
69
 
70
- <!-- Base styles -->
71
  <link rel="stylesheet" href="styles.css" />
72
-
73
- <!-- Prefers reduced motion -->
74
  <style>
75
  @media (prefers-reduced-motion: reduce) {
76
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
77
  }
78
  </style>
79
 
80
- <!-- Schema.org JSON-LD -->
81
  <script type="application/ld+json">
82
  {
83
  "@context":"https://schema.org",
84
  "@type":"ProfessionalService",
85
  "name":"NeuralNomadAI",
86
  "url":"https://example.com/",
87
- "description":"AI image generation, prompt engineering, and creative automation.",
88
  "areaServed":"Worldwide",
89
- "image":"https://images.unsplash.com/photo-1526378722484-bd91ca387e72?q=80&w=1600&auto=format&fit=crop",
90
- "sameAs": ["https://www.instagram.com/","https://www.linkedin.com/","https://www.fiverr.com/"],
91
- "offers": { "@type":"Offer","priceCurrency":"USD","availability":"https://schema.org/InStock" }
92
  }
93
  </script>
94
  </head>
95
-
96
  <body class="bg-bgLight text-slate-800 dark:bg-bgDark dark:text-slate-200 font-display">
97
- <!-- Theme Boot: prevent flash -->
98
  <script>
99
  (function(){
100
  const ls = localStorage.getItem('nnai-theme');
@@ -106,20 +81,16 @@
106
  <!-- Header -->
107
  <header class="sticky top-0 z-50 backdrop-blur bg-bgLight/80 dark:bg-bgDark/80 border-b border-slate-200/60 dark:border-slate-700/50">
108
  <div class="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8 h-16 flex items-center justify-between">
109
- <a href="#home" class="flex items-center gap-3 group" data-route>
110
- <svg width="32" height="32" viewBox="0 0 48 48" class="text-primary group-hover:scale-105 transition" aria-hidden="true">
111
- <path fill="currentColor" d="M39.6 34.1V13.9c0 1.9-2.7 3.5-6.8 4.5-2.5.6-5.5 1-8.8 1s-6.3-.4-8.8-1c-4.1-1-6.8-2.6-6.8-4.5v20.3c0 1.9 2.7 3.5 6.8 4.5 2.5.6 5.5 1 8.8 1s6.3-.4 8.8-1c4.1-1 6.8-2.6 6.8-4.5z"/>
112
- </svg>
113
  <span class="text-lg font-bold">NeuralNomadAI</span>
114
  </a>
115
 
116
- <!-- Desktop Nav -->
117
  <nav class="hidden md:flex items-center gap-6" aria-label="Primary">
118
  <a class="nav-link" href="#home" data-route>Home</a>
119
- <a class="nav-link" href="#services" data-route>Services</a>
120
  <a class="nav-link" href="#portfolio" data-route>Portfolio</a>
121
- <a class="nav-link" href="#pricing" data-route>Pricing</a>
122
- <a class="nav-link" href="#testimonials" data-route>Testimonials</a>
123
  <a class="nav-link" href="#about" data-route>About</a>
124
  <a class="nav-link" href="#contact" data-route>Contact</a>
125
  </nav>
@@ -127,26 +98,26 @@
127
  <div class="flex items-center gap-3">
128
  <button id="themeToggle" class="rounded-full p-2 hover:bg-slate-200/60 dark:hover:bg-slate-700/40" aria-label="Toggle dark mode">
129
  <span class="sr-only">Toggle theme</span>
130
- <svg class="h-5 w-5 hidden dark:block" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true"><path d="M21.64 13A9 9 0 1111 2.36 7 7 0 0021.64 13z"/></svg>
131
- <svg class="h-5 w-5 dark:hidden" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true"><path d="M6.76 4.84l-1.8-1.79L3.17 4.84l1.79 1.79 1.8-1.79zM1 13h3v-2H1v2zm10-9h2V1h-2v3zm7.03 2.03l1.79-1.79-1.79-1.79-1.79 1.79 1.79 1.79zM20 11v2h3v-2h-3zm-8 9h2v3h-2v-3zM4.22 18.36l-1.79 1.79 1.79 1.79 1.79-1.79-1.79-1.79zM17.24 19.16l1.79 1.79 1.79-1.79-1.79-1.79-1.79 1.79z"/></svg>
132
  </button>
133
- <a href="#contact" data-route class="hidden sm:inline-block rounded-lg bg-primary px-4 py-2 text-sm font-bold text-white shadow hover:opacity-90 focus:outline-none focus-visible:ring-2 focus-visible:ring-primary">Get Started</a>
134
 
135
- <!-- Mobile menu -->
 
 
 
136
  <button id="menuBtn" class="md:hidden p-2 rounded hover:bg-slate-200/60 dark:hover:bg-slate-700/40" aria-expanded="false" aria-controls="mobileMenu" aria-label="Toggle menu">
137
  <svg class="h-6 w-6" viewBox="0 0 24 24" fill="currentColor"><path d="M3 6h18v2H3V6zm0 5h18v2H3v-2zm0 5h18v2H3v-2z"/></svg>
138
  </button>
139
  </div>
140
  </div>
141
 
142
- <!-- Mobile Drawer -->
143
  <div id="mobileMenu" class="md:hidden hidden border-t border-slate-200 dark:border-slate-700">
144
- <nav class="px-4 py-2 flex flex-col gap-1" aria-label="Mobile">
145
  <a class="mobile-link" href="#home" data-route>Home</a>
146
- <a class="mobile-link" href="#services" data-route>Services</a>
147
  <a class="mobile-link" href="#portfolio" data-route>Portfolio</a>
148
- <a class="mobile-link" href="#pricing" data-route>Pricing</a>
149
- <a class="mobile-link" href="#testimonials" data-route>Testimonials</a>
150
  <a class="mobile-link" href="#about" data-route>About</a>
151
  <a class="mobile-link" href="#contact" data-route>Contact</a>
152
  </nav>
@@ -156,115 +127,144 @@
156
  <main id="app" class="min-h-[70vh]">
157
  <!-- ======================== HOME ======================== -->
158
  <section id="home" class="section pt-12 sm:pt-16">
159
- <div class="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8">
 
160
  <div class="relative overflow-hidden rounded-2xl shadow-soft">
161
- <img
162
- src="https://images.unsplash.com/photo-1526378722484-bd91ca387e72?q=80&w=1600&auto=format&fit=crop"
163
- alt="Abstract neural aesthetic"
164
- class="w-full aspect-[16/7] object-cover"
165
- loading="lazy"
166
- />
167
- <div class="absolute inset-0 bg-black/50 backdrop-blur-[1px]"></div>
 
 
 
 
 
 
 
 
168
  <div class="absolute inset-0 flex items-center justify-center text-center p-6">
169
  <div class="max-w-3xl text-white">
170
- <h1 class="text-4xl sm:text-5xl lg:text-6xl font-bold tracking-tight">Get Stunning AI Images That Match Your Brief — Fast</h1>
171
- <p class="mt-4 text-lg opacity-90">AI-powered visuals, custom prompts & creative automation — delivered with unlimited revisions until you’re thrilled.</p>
 
 
 
172
  <div class="mt-6 flex flex-wrap justify-center gap-3">
173
- <a href="https://formspree.io/f/your-id" class="btn-primary" rel="noopener">🔥 Hire on Fiverr →</a>
174
- <a href="#portfolio" data-route class="btn-secondary">View Portfolio →</a>
175
  </div>
176
  </div>
177
  </div>
 
 
 
178
  </div>
179
 
180
- <!-- Trust row -->
181
  <div class="grid grid-cols-2 md:grid-cols-5 gap-3 text-center mt-10">
182
- <div class="pill">✓ 5-Star Rated</div>
183
- <div class="pill">✓ 100+ Projects</div>
184
- <div class="pill">✓ 24-48 Hour Delivery</div>
185
- <div class="pill">✓ Unlimited Revisions</div>
186
- <div class="pill col-span-2 md:col-span-1">✓ Commercial License</div>
187
- </div>
188
-
189
- <!-- Mini showcase -->
190
- <div class="py-16">
191
- <h2 class="h2 text-center">Visual Showcase</h2>
192
- <div class="mt-10 grid gap-6 md:grid-cols-3">
193
- <button class="gallery-card" data-lightbox="https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?q=80&w=1600&auto=format&fit=crop" aria-label="Open Fantasy Landscape">
194
- <img class="gallery-img" alt="AI Illustration — Fantasy Landscape" loading="lazy"
195
- src="https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?q=80&w=1200&auto=format&fit=crop" />
196
- <span class="gallery-caption">AI Illustration — Fantasy Landscape</span>
197
- </button>
198
- <button class="gallery-card" data-lightbox="https://images.unsplash.com/photo-1518779578993-ec3579fee39f?q=80&w=1600&auto=format&fit=crop" aria-label="Open Product Mockup">
199
- <img class="gallery-img" alt="Product Photography Mockup" loading="lazy"
200
- src="https://images.unsplash.com/photo-1518779578993-ec3579fee39f?q=80&w=1200&auto=format&fit=crop" />
201
- <span class="gallery-caption">Product Photography — Tech Device</span>
202
- </button>
203
- <button class="gallery-card" data-lightbox="https://images.unsplash.com/photo-1503023345310-bd7c1de61c7d?q=80&w=1600&auto=format&fit=crop" aria-label="Open Brand Assets">
204
- <img class="gallery-img" alt="Brand Asset Pack" loading="lazy"
205
- src="https://images.unsplash.com/photo-1503023345310-bd7c1de61c7d?q=80&w=1200&auto=format&fit=crop" />
206
- <span class="gallery-caption">Brand Asset Pack — Logo Variations</span>
207
- </button>
208
- </div>
209
- <div class="callout mt-12 text-center">
210
- <h3 class="h3">Fast & Reliable. Perfectly Tailored. Full Commercial Rights.</h3>
211
- <p class="mt-2 opacity-80">Based in UAE timezone (GST) with responsive support and clear revisions.</p>
212
- <a href="#services" data-route class="btn-primary mt-5">View Services & Packages</a>
213
- </div>
214
  </div>
215
  </div>
216
  </section>
217
 
218
- <!-- ======================== SERVICES ======================== -->
219
  <section id="services" class="section">
220
  <div class="container">
221
  <div class="text-center max-w-3xl mx-auto">
222
- <h2 class="h2">Services & Packages</h2>
223
- <p class="mt-3 text-lg opacity-80">Choose the perfect package. Every gig includes unlimited revisions and commercial licensing.</p>
224
  </div>
225
 
226
  <div class="grid gap-6 lg:grid-cols-2 mt-12">
227
- <!-- Cards -->
228
  <article class="card">
229
- <h3 class="h4">Custom AI Image Generation</h3>
230
- <p>Create stunning, unique AI images tailored to your brief. Ideal for marketing, social, product visuals, and concepting.</p>
231
- <a class="link-chip" href="https://formspree.io/f/your-id">Hire on Fiverr →</a>
 
 
 
 
232
  </article>
233
 
 
234
  <article class="card">
235
- <h3 class="h4">Professional Prompt Engineering</h3>
236
- <p>Get expertly crafted prompts that generate exactly what you envision—repeatable and documented.</p>
237
- <a class="link-chip" href="https://formspree.io/f/your-id">Hire on Fiverr →</a>
 
 
 
 
238
  </article>
239
 
 
240
  <article class="card">
241
- <h3 class="h4">AI-Powered Image Transformations</h3>
242
- <p>Elevate existing images with style transfers, background changes, upscaling, and enhancements.</p>
243
- <a class="link-chip" href="https://formspree.io/f/your-id">Hire on Fiverr →</a>
 
 
 
 
244
  </article>
245
 
 
246
  <article class="card">
247
- <h3 class="h4">Complete AI Brand Asset Packages</h3>
248
- <p>Build a cohesive visual identity: logos, icons, social templates, and more—matched to your aesthetic.</p>
249
- <a class="link-chip" href="https://formspree.io/f/your-id">Hire on Fiverr →</a>
250
- </article>
251
-
252
- <article class="card lg:col-span-2">
253
- <h3 class="h4">Custom AI Workflow Automation</h3>
254
- <p>Stop repetitive tasks. We’ll build custom automation that generates images, processes content, and scales output.</p>
255
- <a class="link-chip" href="#contact" data-route>Contact for Custom Quote →</a>
256
  </article>
257
  </div>
258
 
259
- <!-- Prompt Ideator (client-side only, mock) -->
260
- <div class="mt-16 text-center">
261
- <h3 class="h3">✨ AI Prompt Ideator</h3>
262
- <p class="opacity-80">Have an idea? Expand it into a rich, detailed prompt (client-side demo).</p>
263
- <div class="mt-6 flex flex-col sm:flex-row gap-3 max-w-xl mx-auto">
264
- <input id="promptInput" class="input" type="text" placeholder="e.g., a cat astronaut on Mars" autocomplete="off" />
265
- <button id="promptBtn" class="btn-primary">Generate Prompt</button>
266
- </div>
267
- <output id="promptOut" class="mt-4 hidden p-4 bg-primary/10 dark:bg-primary/20 rounded text-left whitespace-pre-wrap"></output>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
268
  </div>
269
  </div>
270
  </section>
@@ -273,136 +273,98 @@
273
  <section id="portfolio" class="section">
274
  <div class="container">
275
  <div class="text-center max-w-3xl mx-auto">
276
- <h2 class="h2">Featured Work</h2>
277
- <p class="mt-3 opacity-80">Real projects. Real results. See what NeuralNomadAI can create for you.</p>
278
  </div>
279
 
280
  <!-- Filters -->
281
  <div class="mt-8 flex flex-wrap gap-2 justify-center">
282
  <button class="filter-chip active" data-filter="*">All</button>
283
- <button class="filter-chip" data-filter="illustration">Illustration</button>
284
- <button class="filter-chip" data-filter="photoreal">Photoreal</button>
285
- <button class="filter-chip" data-filter="logo">Logo/Icon</button>
286
- <button class="filter-chip" data-filter="ui">UI Mockups</button>
287
  </div>
288
 
289
  <!-- Grid -->
290
  <div id="portfolioGrid" class="mt-8 grid gap-6 sm:grid-cols-2 lg:grid-cols-3">
291
- <!-- Item -->
292
- <button class="portfolio-card" data-cat="illustration" data-lightbox="https://images.unsplash.com/photo-1472214103451-9374bd1c798e?q=80&w=1600&auto=format&fit=crop" aria-label="Fantasy Character Set">
293
- <img alt="Fantasy Game Character Set" loading="lazy"
294
- src="https://images.unsplash.com/photo-1472214103451-9374bd1c798e?q=80&w=1200&auto=format&fit=crop" />
295
  <div class="p-3">
296
- <h3 class="font-semibold">Fantasy Game Character Set</h3>
297
- <p class="text-sm opacity-80">Complete character design for an indie game.</p>
 
298
  </div>
299
  </button>
300
 
301
- <button class="portfolio-card" data-cat="photoreal" data-lightbox="https://images.unsplash.com/photo-1483985988355-763728e1935b?q=80&w=1600&auto=format&fit=crop" aria-label="E-commerce Product Photos">
302
- <img alt="E-commerce Product Photos" loading="lazy"
 
303
  src="https://images.unsplash.com/photo-1483985988355-763728e1935b?q=80&w=1200&auto=format&fit=crop" />
304
  <div class="p-3">
305
- <h3 class="font-semibold">E-commerce Product Photos</h3>
306
- <p class="text-sm opacity-80">Photorealistic product shots for Shopify.</p>
 
307
  </div>
308
  </button>
309
 
310
- <button class="portfolio-card" data-cat="logo" data-lightbox="https://images.unsplash.com/photo-1504805572947-34fad45aed93?q=80&w=1600&auto=format&fit=crop" aria-label="Tech Startup Brand Kit">
311
- <img alt="Tech Startup Brand Kit" loading="lazy"
 
312
  src="https://images.unsplash.com/photo-1504805572947-34fad45aed93?q=80&w=1200&auto=format&fit=crop" />
313
  <div class="p-3">
314
- <h3 class="font-semibold">Tech Startup Brand Kit</h3>
315
- <p class="text-sm opacity-80">Complete logo + identity system.</p>
 
316
  </div>
317
  </button>
318
 
319
- <button class="portfolio-card" data-cat="ui" data-lightbox="https://images.unsplash.com/photo-1516542076529-1ea3854896e1?q=80&w=1600&auto=format&fit=crop" aria-label="SaaS UI Mockups">
320
- <img alt="SaaS UI Mockups" loading="lazy"
 
321
  src="https://images.unsplash.com/photo-1516542076529-1ea3854896e1?q=80&w=1200&auto=format&fit=crop" />
322
  <div class="p-3">
323
- <h3 class="font-semibold">SaaS UI Mockups</h3>
324
- <p class="text-sm opacity-80">Dashboard + onboarding visuals.</p>
325
- </div>
326
- </button>
327
-
328
- <button class="portfolio-card" data-cat="illustration" data-lightbox="https://images.unsplash.com/photo-1497215728101-495ebbda99b3?q=80&w=1600&auto=format&fit=crop" aria-label="Editorial Illustration Pack">
329
- <img alt="Editorial Illustration" loading="lazy"
330
- src="https://images.unsplash.com/photo-1497215728101-495ebbda99b3?q=80&w=1200&auto=format&fit=crop" />
331
- <div class="p-3">
332
- <h3 class="font-semibold">Editorial Illustration Pack</h3>
333
- <p class="text-sm opacity-80">Magazine-friendly art direction.</p>
334
- </div>
335
- </button>
336
-
337
- <button class="portfolio-card" data-cat="photoreal" data-lightbox="https://images.unsplash.com/photo-1520975916090-3105956dac38?q=80&w=1600&auto=format&fit=crop" aria-label="Lifestyle Photos">
338
- <img alt="Lifestyle Photos" loading="lazy"
339
- src="https://images.unsplash.com/photo-1520975916090-3105956dac38?q=80&w=1200&auto=format&fit=crop" />
340
- <div class="p-3">
341
- <h3 class="font-semibold">Lifestyle Photos</h3>
342
- <p class="text-sm opacity-80">Brand-consistent live sets.</p>
343
  </div>
344
  </button>
345
  </div>
346
  </div>
347
  </section>
348
 
349
- <!-- ======================== PRICING ======================== -->
350
- <section id="pricing" class="section">
351
  <div class="container">
352
  <div class="text-center max-w-3xl mx-auto">
353
- <h2 class="h2">Transparent Pricing, Exceptional Value</h2>
354
- <p class="mt-3 opacity-80">Pick a tier that matches your project. Unlimited revisions, commercial license across the board.</p>
355
- </div>
356
-
357
- <div class="overflow-x-auto mt-10">
358
- <table class="w-full min-w-[720px] border-separate border-spacing-0 rounded-xl overflow-hidden">
359
- <thead>
360
- <tr class="bg-primary/10 dark:bg-primary/20">
361
- <th class="th">Package Tier</th>
362
- <th class="th text-center">Basic</th>
363
- <th class="th text-center">Standard</th>
364
- <th class="th text-center">Premium</th>
365
- </tr>
366
- </thead>
367
- <tbody class="divide-y divide-slate-200 dark:divide-slate-700">
368
- <tr><td class="td-section" colspan="4">Deliverables</td></tr>
369
- <tr><td class="td">Image Count</td><td class="td text-center">3–5</td><td class="td text-center">10–15</td><td class="td text-center">20–30</td></tr>
370
- <tr><td class="td">Resolution</td><td class="td text-center">Up to 2K</td><td class="td text-center">Up to 4K</td><td class="td text-center">Up to 8K</td></tr>
371
- <tr><td class="td-section" colspan="4">Included</td></tr>
372
- <tr><td class="td">Commercial License</td><td class="td text-center">✓</td><td class="td text-center">✓</td><td class="td text-center">✓</td></tr>
373
- <tr><td class="td">Unlimited Revisions</td><td class="td text-center">✓</td><td class="td text-center">✓</td><td class="td text-center">✓</td></tr>
374
- <tr><td class="td">Prompt Documentation</td><td class="td text-center">—</td><td class="td text-center">✓</td><td class="td text-center">✓</td></tr>
375
- <tr><td class="td-section" colspan="4">Delivery & Support</td></tr>
376
- <tr><td class="td">Turnaround Time</td><td class="td text-center">48–72h</td><td class="td text-center">24–48h</td><td class="td text-center">24h</td></tr>
377
- <tr><td class="td">Priority Support</td><td class="td text-center">—</td><td class="td text-center">—</td><td class="td text-center">✓</td></tr>
378
- </tbody>
379
- </table>
380
- </div>
381
- </div>
382
- </section>
383
-
384
- <!-- ======================== TESTIMONIALS ======================== -->
385
- <section id="testimonials" class="section">
386
- <div class="container">
387
- <div class="text-center max-w-3xl mx-auto">
388
- <h2 class="h2">What Clients Say</h2>
389
- <p class="mt-3 opacity-80">Real feedback from real projects. Your success is the north star.</p>
390
  </div>
391
 
392
  <div class="grid gap-6 md:grid-cols-3 mt-10">
393
  <blockquote class="quote">
394
- <p>“NeuralNomadAI delivered exactly what I envisioned—faster than expected. Unlimited revisions got us to perfect.”</p>
395
- <footer>— Sarah M., Marketing Director</footer>
396
  </blockquote>
397
  <blockquote class="quote">
398
- <p>“First time someone truly nailed our brand aesthetic. Prompt docs help us reproduce the style. Worth it.”</p>
399
- <footer>— James K., E-commerce Founder</footer>
400
  </blockquote>
401
  <blockquote class="quote">
402
- <p>“The automation tool saves me 10+ hours every week. Absolute game-changer for content ops.”</p>
403
- <footer>— Lisa R., Creator</footer>
404
  </blockquote>
405
  </div>
 
 
 
 
 
 
 
 
406
  </div>
407
  </section>
408
 
@@ -411,24 +373,29 @@
411
  <div class="container">
412
  <div class="grid gap-10 lg:grid-cols-2 items-start">
413
  <div>
414
- <h2 class="h2">About NeuralNomadAI</h2>
415
- <p class="mt-3 opacity-80">Where creativity shakes hands with cutting-edge AI. We craft custom imagery and automations that help brands stand out without breaking the laws of time or budget.</p>
 
 
 
 
 
416
  <div class="grid mt-8 gap-4 sm:grid-cols-2">
417
  <div class="about-card">
418
- <h3 class="font-bold">AI Image Generation</h3>
419
- <p class="text-sm opacity-80">Precision prompts across Midjourney, DALL·E, and Stable Diffusion.</p>
420
  </div>
421
  <div class="about-card">
422
- <h3 class="font-bold">Style Adaptation</h3>
423
- <p class="text-sm opacity-80">Photoreal, illustrative—any aesthetic, faithfully reproduced.</p>
424
  </div>
425
  <div class="about-card">
426
- <h3 class="font-bold">Technical Excellence</h3>
427
- <p class="text-sm opacity-80">High-res outputs and production-ready assets.</p>
428
  </div>
429
  <div class="about-card">
430
- <h3 class="font-bold">Workflow Automation</h3>
431
- <p class="text-sm opacity-80">Custom tooling to scale content production.</p>
432
  </div>
433
  </div>
434
  </div>
@@ -444,13 +411,20 @@
444
  <section id="contact" class="section">
445
  <div class="container">
446
  <div class="text-center max-w-2xl mx-auto">
447
- <h2 class="h2">Let’s Build Something Amazing</h2>
448
- <p class="mt-3 opacity-80">Fastest path: hire on Fiverr. For custom projects, send a message below.</p>
449
- <div class="mt-5">
450
- <a href="https://formspree.io/f/your-id" class="btn-primary" rel="noopener">🔥 Browse My Fiverr Gigs →</a>
 
 
 
451
  </div>
 
 
 
452
  </div>
453
 
 
454
  <form id="contactForm" class="mt-10 max-w-2xl mx-auto grid gap-4" action="https://formspree.io/f/your-id" method="POST" novalidate>
455
  <div>
456
  <label class="label" for="name">Name</label>
@@ -462,19 +436,8 @@
462
  </div>
463
  <div>
464
  <label class="label" for="message">Project Brief</label>
465
- <textarea class="input min-h-[140px]" id="message" name="message" required placeholder="Tell me about your goals, audience, visual style, and deliverables."></textarea>
466
  </div>
467
-
468
- <fieldset class="mt-2">
469
- <legend class="label">Budget (USD)</legend>
470
- <div class="flex flex-wrap gap-2 mt-2">
471
- <label class="chip"><input type="radio" name="budget" value="500-1000" required /> <span>$500–$1k</span></label>
472
- <label class="chip"><input type="radio" name="budget" value="1000-2500" /> <span>$1k–$2.5k</span></label>
473
- <label class="chip"><input type="radio" name="budget" value="2500-5000" /> <span>$2.5k–$5k</span></label>
474
- <label class="chip"><input type="radio" name="budget" value="5000+" /> <span>$5k+</span></label>
475
- </div>
476
- </fieldset>
477
-
478
  <div class="flex items-center gap-3">
479
  <button class="btn-primary" type="submit">Send Message</button>
480
  <p id="formMsg" class="text-sm"></p>
@@ -488,24 +451,21 @@
488
  <footer class="border-t border-slate-200/60 dark:border-slate-700/50">
489
  <div class="container py-10 text-center">
490
  <nav class="flex items-center justify-center gap-5">
491
- <a class="link muted" href="https://formspree.io/f/your-id" rel="noopener">Fiverr</a>
492
- <a class="link muted" href="https://www.linkedin.com/" rel="noopener">LinkedIn</a>
493
- <a class="link muted" href="https://www.instagram.com/" rel="noopener">Instagram</a>
494
  </nav>
495
  <p class="text-xs opacity-70 mt-4">© 2024–2025 NeuralNomadAI. All rights reserved.</p>
496
- <p class="text-xs opacity-60">Client files remain strictly confidential. Work appears in portfolio only with explicit permission.</p>
497
  </div>
498
  </footer>
499
 
500
  <!-- Lightbox Modal -->
501
  <dialog id="lightbox" class="rounded-xl p-0 backdrop:bg-black/60">
502
- <button id="lightboxClose" class="absolute top-3 right-3 bg-black/60 text-white rounded-full p-2" aria-label="Close image">
503
-
504
- </button>
505
  <img id="lightboxImg" class="max-h-[90vh] w-auto object-contain rounded-xl" alt="Enlarged work sample" />
506
  </dialog>
507
 
508
- <!-- App Scripts -->
509
  <script src="script.js" defer></script>
510
  </body>
511
  </html>
 
1
  <!-- =========================================================
2
  # File: index.html
3
+ # NeuralNomadAI — Conversion-Focused Portfolio (per Google Sites draft)
 
 
 
 
 
 
 
 
 
 
 
4
  # ========================================================= -->
5
  <!DOCTYPE html>
6
  <html lang="en" class="scroll-smooth">
7
  <head>
8
  <meta charset="utf-8" />
9
  <meta name="viewport" content="width=device-width, initial-scale=1" />
 
10
 
11
+ <!-- SEO (Home) -->
12
+ <title>NeuralNomadAI | Creative AI Imagery & Automation Tools</title>
13
+ <meta name="description" content="Get stunning AI images, custom prompts, and creative automation tools delivered in 24–72 hours. Top-rated AI services on Fiverr." />
 
14
 
15
  <!-- Open Graph -->
16
+ <meta property="og:title" content="NeuralNomadAI — Creative AI Imagery & Automation Tools" />
17
+ <meta property="og:description" content="AI images, custom prompts, and automation tools—delivered in 24–72h. View portfolio and hire on Fiverr." />
18
  <meta property="og:type" content="website" />
19
  <meta property="og:url" content="https://example.com/" />
20
  <meta property="og:image" content="https://images.unsplash.com/photo-1526378722484-bd91ca387e72?q=80&w=1600&auto=format&fit=crop" />
21
 
22
  <!-- Twitter -->
23
  <meta name="twitter:card" content="summary_large_image" />
24
+ <meta name="twitter:title" content="NeuralNomadAI — Creative AI Imagery & Automation Tools" />
25
+ <meta name="twitter:description" content="Get stunning AI images, custom prompts, and automation tools—delivered in 24–72h." />
26
  <meta name="twitter:image" content="https://images.unsplash.com/photo-1526378722484-bd91ca387e72?q=80&w=1600&auto=format&fit=crop" />
27
 
28
+ <link rel="canonical" href="https://example.com/" />
29
  <link rel="icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='128' height='128'%3E%3Ctext y='1em' font-size='96'%3E🤖%3C/text%3E%3C/svg%3E">
30
 
31
  <!-- Fonts -->
 
40
  darkMode: 'class',
41
  theme: {
42
  extend: {
43
+ fontFamily: { display: ['Space Grotesk','system-ui','ui-sans-serif','sans-serif'] },
44
+ colors: { primary: '#1193d4', bgLight: '#f6f7f8', bgDark: '#0c1418' },
45
+ boxShadow: { soft: '0 8px 30px rgba(2,12,27,.08)' }
 
 
 
 
 
 
46
  }
47
  }
48
+ }
49
  </script>
50
 
 
51
  <link rel="stylesheet" href="styles.css" />
 
 
52
  <style>
53
  @media (prefers-reduced-motion: reduce) {
54
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
55
  }
56
  </style>
57
 
58
+ <!-- JSON-LD -->
59
  <script type="application/ld+json">
60
  {
61
  "@context":"https://schema.org",
62
  "@type":"ProfessionalService",
63
  "name":"NeuralNomadAI",
64
  "url":"https://example.com/",
65
+ "description":"Creative AI imagery, prompt engineering, and automation tools for creators and brands.",
66
  "areaServed":"Worldwide",
67
+ "sameAs":["https://www.instagram.com/","https://www.linkedin.com/"],
68
+ "offers":{"@type":"Offer","priceCurrency":"USD","availability":"https://schema.org/InStock"}
 
69
  }
70
  </script>
71
  </head>
 
72
  <body class="bg-bgLight text-slate-800 dark:bg-bgDark dark:text-slate-200 font-display">
 
73
  <script>
74
  (function(){
75
  const ls = localStorage.getItem('nnai-theme');
 
81
  <!-- Header -->
82
  <header class="sticky top-0 z-50 backdrop-blur bg-bgLight/80 dark:bg-bgDark/80 border-b border-slate-200/60 dark:border-slate-700/50">
83
  <div class="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8 h-16 flex items-center justify-between">
84
+ <a href="#home" data-route class="flex items-center gap-3 group">
85
+ <svg width="32" height="32" viewBox="0 0 48 48" class="text-primary group-hover:scale-105 transition" aria-hidden="true"><path fill="currentColor" d="M39.6 34.1V13.9c0 1.9-2.7 3.5-6.8 4.5-2.5.6-5.5 1-8.8 1s-6.3-.4-8.8-1c-4.1-1-6.8-2.6-6.8-4.5v20.3c0 1.9 2.7 3.5 6.8 4.5 2.5.6 5.5 1 8.8 1s6.3-.4 8.8-1c4.1-1 6.8-2.6 6.8-4.5z"/></svg>
 
 
86
  <span class="text-lg font-bold">NeuralNomadAI</span>
87
  </a>
88
 
 
89
  <nav class="hidden md:flex items-center gap-6" aria-label="Primary">
90
  <a class="nav-link" href="#home" data-route>Home</a>
91
+ <a class="nav-link" href="#services" data-route>Services & Pricing</a>
92
  <a class="nav-link" href="#portfolio" data-route>Portfolio</a>
93
+ <a class="nav-link" href="#reviews" data-route>Trust & Reviews</a>
 
94
  <a class="nav-link" href="#about" data-route>About</a>
95
  <a class="nav-link" href="#contact" data-route>Contact</a>
96
  </nav>
 
98
  <div class="flex items-center gap-3">
99
  <button id="themeToggle" class="rounded-full p-2 hover:bg-slate-200/60 dark:hover:bg-slate-700/40" aria-label="Toggle dark mode">
100
  <span class="sr-only">Toggle theme</span>
101
+ <svg class="h-5 w-5 hidden dark:block" viewBox="0 0 24 24" fill="currentColor"><path d="M21.64 13A9 9 0 1111 2.36 7 7 0 0021.64 13z"/></svg>
102
+ <svg class="h-5 w-5 dark:hidden" viewBox="0 0 24 24" fill="currentColor"><path d="M6.76 4.84l-1.8-1.79L3.17 4.84l1.79 1.79 1.8-1.79zM1 13h3v-2H1v2zm10-9h2V1h-2v3zm7.03 2.03l1.79-1.79-1.79-1.79-1.79 1.79 1.79 1.79zM20 11v2h3v-2h-3zm-8 9h2v3h-2v-3zM4.22 18.36l-1.79 1.79 1.79 1.79 1.79-1.79-1.79-1.79zM17.24 19.16l1.79 1.79 1.79-1.79-1.79-1.79-1.79 1.79z"/></svg>
103
  </button>
 
104
 
105
+ <a class="hidden sm:inline-block rounded-lg bg-primary px-4 py-2 text-sm font-bold text-white shadow hover:opacity-90 focus-visible:ring-2 focus-visible:ring-primary"
106
+ href="FIVERR_PROFILE_URL_HERE" rel="noopener">Hire on Fiverr</a>
107
+
108
+ <!-- Mobile toggle -->
109
  <button id="menuBtn" class="md:hidden p-2 rounded hover:bg-slate-200/60 dark:hover:bg-slate-700/40" aria-expanded="false" aria-controls="mobileMenu" aria-label="Toggle menu">
110
  <svg class="h-6 w-6" viewBox="0 0 24 24" fill="currentColor"><path d="M3 6h18v2H3V6zm0 5h18v2H3v-2zm0 5h18v2H3v-2z"/></svg>
111
  </button>
112
  </div>
113
  </div>
114
 
 
115
  <div id="mobileMenu" class="md:hidden hidden border-t border-slate-200 dark:border-slate-700">
116
+ <nav class="px-4 py-2 flex flex-col gap-1">
117
  <a class="mobile-link" href="#home" data-route>Home</a>
118
+ <a class="mobile-link" href="#services" data-route>Services & Pricing</a>
119
  <a class="mobile-link" href="#portfolio" data-route>Portfolio</a>
120
+ <a class="mobile-link" href="#reviews" data-route>Trust & Reviews</a>
 
121
  <a class="mobile-link" href="#about" data-route>About</a>
122
  <a class="mobile-link" href="#contact" data-route>Contact</a>
123
  </nav>
 
127
  <main id="app" class="min-h-[70vh]">
128
  <!-- ======================== HOME ======================== -->
129
  <section id="home" class="section pt-12 sm:pt-16">
130
+ <div class="container">
131
+ <!-- Hero with Slider -->
132
  <div class="relative overflow-hidden rounded-2xl shadow-soft">
133
+ <div class="slider" aria-roledescription="carousel">
134
+ <!-- Slides (replace with your outputs/video) -->
135
+ <div class="slide is-active">
136
+ <img src="https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?q=80&w=1600&auto=format&fit=crop" alt="Showcase image 1" loading="eager" class="w-full aspect-[16/7] object-cover">
137
+ </div>
138
+ <div class="slide">
139
+ <img src="https://images.unsplash.com/photo-1503023345310-bd7c1de61c7d?q=80&w=1600&auto=format&fit=crop" alt="Showcase image 2" loading="lazy" class="w-full aspect-[16/7] object-cover">
140
+ </div>
141
+ <div class="slide">
142
+ <img src="https://images.unsplash.com/photo-1518779578993-ec3579fee39f?q=80&w=1600&auto=format&fit=crop" alt="Showcase image 3" loading="lazy" class="w-full aspect-[16/7] object-cover">
143
+ </div>
144
+ <!-- Optional demo video button -->
145
+ <a href="DEMO_VIDEO_MP4_URL_HERE" class="demo-pill" aria-label="Watch short demo video">▶ Demo Video</a>
146
+ </div>
147
+ <div class="absolute inset-0 bg-black/45"></div>
148
  <div class="absolute inset-0 flex items-center justify-center text-center p-6">
149
  <div class="max-w-3xl text-white">
150
+ <h1 class="text-4xl sm:text-5xl lg:text-6xl font-bold tracking-tight">Creative imagery & automation tools for bold creators</h1>
151
+ <p class="mt-4 text-lg opacity-90">
152
+ AI images, custom prompts, brand asset packs, and creator automation tools — delivered in 24–72 hours.
153
+ We transform your concepts into commercial-ready visuals that convert.
154
+ </p>
155
  <div class="mt-6 flex flex-wrap justify-center gap-3">
156
+ <a href="FIVERR_PROFILE_URL_HERE" class="btn-primary">Hire on Fiverr</a>
157
+ <a href="#portfolio" data-route class="btn-secondary">View Portfolio</a>
158
  </div>
159
  </div>
160
  </div>
161
+ <!-- Slider controls -->
162
+ <button class="slider-btn prev" aria-label="Previous slide">‹</button>
163
+ <button class="slider-btn next" aria-label="Next slide">›</button>
164
  </div>
165
 
166
+ <!-- Trust badges -->
167
  <div class="grid grid-cols-2 md:grid-cols-5 gap-3 text-center mt-10">
168
+ <div class="pill">⭐ 5-Star Rated</div>
169
+ <div class="pill">⚡ 24–72h Delivery</div>
170
+ <div class="pill">🎯 Commercial License</div>
171
+ <div class="pill">💬 Fast Communication</div>
172
+ <div class="pill">📦 100+ Projects</div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
173
  </div>
174
  </div>
175
  </section>
176
 
177
+ <!-- ======================== SERVICES & PRICING ======================== -->
178
  <section id="services" class="section">
179
  <div class="container">
180
  <div class="text-center max-w-3xl mx-auto">
181
+ <h2 class="h2">AI Imagery and Automation Gigs</h2>
182
+ <p class="mt-3 text-lg opacity-80">Explore our core Fiverr services: AI image creation, prompt engineering, brand assets, and custom automation scripts.</p>
183
  </div>
184
 
185
  <div class="grid gap-6 lg:grid-cols-2 mt-12">
186
+ <!-- Gig 1 -->
187
  <article class="card">
188
+ <h3 class="h4">Bespoke AI Image Creation</h3>
189
+ <p>Get stunning, commercially-licensed visuals tailored exactly to your brief. Perfect for product mockups, blog posts, or social media.</p>
190
+ <ul class="list mt-3">
191
+ <li><strong>Deliverables:</strong> High-res images, revisions, commercial use license.</li>
192
+ <li><strong>Turnaround:</strong> <span class="muted">[Hours (Basic)]</span></li>
193
+ <li><strong>Price Range:</strong> <span class="muted">[$ .. $]</span></li>
194
+ </ul>
195
  </article>
196
 
197
+ <!-- Gig 2 -->
198
  <article class="card">
199
+ <h3 class="h4">Prompt Engineering & Tuning</h3>
200
+ <p>Need a custom AI “voice” for your brand? We design and test highly effective prompts that produce consistent results.</p>
201
+ <ul class="list mt-3">
202
+ <li><strong>Deliverables:</strong> Master prompts, test runs, style guide snippet.</li>
203
+ <li><strong>Turnaround:</strong> <span class="muted">[Hours]</span></li>
204
+ <li><strong>Price Range:</strong> <span class="muted">[$ .. $]</span></li>
205
+ </ul>
206
  </article>
207
 
208
+ <!-- Gig 3 -->
209
  <article class="card">
210
+ <h3 class="h4">Image-to-Image Edits & Refining</h3>
211
+ <p>Breathe new life into existing images. Use AI to remix, upscale, style-transfer, or add elements seamlessly.</p>
212
+ <ul class="list mt-3">
213
+ <li><strong>Deliverables:</strong> Refined images, revisions, upscaled file.</li>
214
+ <li><strong>Turnaround:</strong> <span class="muted">[Hours]</span></li>
215
+ <li><strong>Price Range:</strong> <span class="muted">[$ .. $]</span></li>
216
+ </ul>
217
  </article>
218
 
219
+ <!-- Gig 4 -->
220
  <article class="card">
221
+ <h3 class="h4">Automation & Creator Tooling</h3>
222
+ <p>Custom scripts (e.g., batching, templating) to automate your content pipeline, data processing, or creative workflow.</p>
223
+ <ul class="list mt-3">
224
+ <li><strong>Deliverables:</strong> Custom script, walkthrough video, <span class="muted">[x]</span>-day support.</li>
225
+ <li><strong>Turnaround:</strong> <span class="muted">[1 Week+]</span></li>
226
+ <li><strong>Price Range:</strong> <span class="muted">[$ .. $]</span></li>
227
+ </ul>
 
 
228
  </article>
229
  </div>
230
 
231
+ <!-- Pricing Snapshot table -->
232
+ <div class="overflow-x-auto mt-12">
233
+ <h3 class="h3 text-center">Pricing Snapshot</h3>
234
+ <table class="w-full min-w-[760px] border-separate border-spacing-0 rounded-xl overflow-hidden mt-6">
235
+ <thead>
236
+ <tr class="bg-primary/10 dark:bg-primary/20">
237
+ <th class="th">Tier</th>
238
+ <th class="th">Includes</th>
239
+ <th class="th">Delivery</th>
240
+ <th class="th">Starting Price</th>
241
+ <th class="th">Fiverr Link</th>
242
+ </tr>
243
+ </thead>
244
+ <tbody class="divide-y divide-slate-200 dark:divide-slate-700">
245
+ <tr>
246
+ <td class="td font-semibold">Basic</td>
247
+ <td class="td">1 Concept, <span class="muted">[x]</span> Revisions, <span class="muted">[y]</span> Images</td>
248
+ <td class="td"><span class="muted">[Hours]</span></td>
249
+ <td class="td"><span class="muted">[$]</span></td>
250
+ <td class="td"><a class="link" href="FIVERR_GIG_URL_BASIC">Open on Fiverr →</a></td>
251
+ </tr>
252
+ <tr>
253
+ <td class="td font-semibold">Standard</td>
254
+ <td class="td">2 Concepts, <span class="muted">[x]</span> Revisions, <span class="muted">[y]</span> Images, Custom Prompt</td>
255
+ <td class="td"><span class="muted">[Hours]</span></td>
256
+ <td class="td"><span class="muted">[$$]</span></td>
257
+ <td class="td"><a class="link" href="FIVERR_GIG_URL_STANDARD">Open on Fiverr →</a></td>
258
+ </tr>
259
+ <tr>
260
+ <td class="td font-semibold">Premium</td>
261
+ <td class="td">Full Brand Asset Pack, Unlimited Revisions, Source File (Prompt), Automation Option</td>
262
+ <td class="td"><span class="muted">[Hours]</span></td>
263
+ <td class="td"><span class="muted">[$$$]</span></td>
264
+ <td class="td"><a class="link" href="FIVERR_GIG_URL_PREMIUM">Open on Fiverr →</a></td>
265
+ </tr>
266
+ </tbody>
267
+ </table>
268
  </div>
269
  </div>
270
  </section>
 
273
  <section id="portfolio" class="section">
274
  <div class="container">
275
  <div class="text-center max-w-3xl mx-auto">
276
+ <h2 class="h2">AI Art Portfolio</h2>
277
+ <p class="mt-3 opacity-80">Illustration, photorealistic design, and logo/icon generation.</p>
278
  </div>
279
 
280
  <!-- Filters -->
281
  <div class="mt-8 flex flex-wrap gap-2 justify-center">
282
  <button class="filter-chip active" data-filter="*">All</button>
283
+ <button class="filter-chip" data-filter="Illustration">Illustration</button>
284
+ <button class="filter-chip" data-filter="Photoreal">Photoreal</button>
285
+ <button class="filter-chip" data-filter="Logo/Icon">Logo/Icon</button>
286
+ <button class="filter-chip" data-filter="UI Mockups">UI Mockups</button>
287
  </div>
288
 
289
  <!-- Grid -->
290
  <div id="portfolioGrid" class="mt-8 grid gap-6 sm:grid-cols-2 lg:grid-cols-3">
291
+ <!-- Project 1 -->
292
+ <button class="portfolio-card" data-cat="Illustration" data-lightbox="https://images.unsplash.com/photo-1497215728101-495ebbda99b3?q=80&w=1600&auto=format&fit=crop" aria-label="Neo-Tokyo Skyscraper">
293
+ <img alt="Neo-Tokyo Skyscraper atmospheric concept art" loading="lazy"
294
+ src="https://images.unsplash.com/photo-1497215728101-495ebbda99b3?q=80&w=1200&auto=format&fit=crop" />
295
  <div class="p-3">
296
+ <h3 class="font-semibold">Neo-Tokyo Skyscraper</h3>
297
+ <p class="text-sm opacity-80">Atmospheric concept art for a cyberpunk game pitch. Tools: MJ v6.</p>
298
+ <a href="FIVERR_GIG_REF_ILLUSTRATION" class="link text-sm">Referenced Gig: Brand Asset Packs →</a>
299
  </div>
300
  </button>
301
 
302
+ <!-- Project 2 -->
303
+ <button class="portfolio-card" data-cat="Photoreal" data-lightbox="https://images.unsplash.com/photo-1483985988355-763728e1935b?q=80&w=1600&auto=format&fit=crop" aria-label="Vintage Product Shoot">
304
+ <img alt="Luxury watch photoreal render" loading="lazy"
305
  src="https://images.unsplash.com/photo-1483985988355-763728e1935b?q=80&w=1200&auto=format&fit=crop" />
306
  <div class="p-3">
307
+ <h3 class="font-semibold">Vintage Product Shoot</h3>
308
+ <p class="text-sm opacity-80">High-fidelity photoreal render for an e-commerce brand. Tools: SD, MJ.</p>
309
+ <a href="FIVERR_GIG_REF_PHOTOREAL" class="link text-sm">View Gig →</a>
310
  </div>
311
  </button>
312
 
313
+ <!-- Project 3 -->
314
+ <button class="portfolio-card" data-cat="Logo/Icon" data-lightbox="https://images.unsplash.com/photo-1504805572947-34fad45aed93?q=80&w=1600&auto=format&fit=crop" aria-label="Minimalist Financial Icon Set">
315
+ <img alt="Minimalist financial icon set" loading="lazy"
316
  src="https://images.unsplash.com/photo-1504805572947-34fad45aed93?q=80&w=1200&auto=format&fit=crop" />
317
  <div class="p-3">
318
+ <h3 class="font-semibold">Minimalist Financial Icon Set</h3>
319
+ <p class="text-sm opacity-80">Clean, vector-ready icons for a fintech mobile app. Tools: SD, Illustrator.</p>
320
+ <a href="FIVERR_GIG_REF_LOGO" class="link text-sm">View Gig →</a>
321
  </div>
322
  </button>
323
 
324
+ <!-- Project 4 -->
325
+ <button class="portfolio-card" data-cat="UI Mockups" data-lightbox="https://images.unsplash.com/photo-1516542076529-1ea3854896e1?q=80&w=1600&auto=format&fit=crop" aria-label="App Dark Mode Concept">
326
+ <img alt="Dark mode UI concept mockups" loading="lazy"
327
  src="https://images.unsplash.com/photo-1516542076529-1ea3854896e1?q=80&w=1200&auto=format&fit=crop" />
328
  <div class="p-3">
329
+ <h3 class="font-semibold">App Dark Mode Concept</h3>
330
+ <p class="text-sm opacity-80">AI-generated UI to visualize a dark-mode transition. Tools: MJ v5.2, Figma.</p>
331
+ <a href="FIVERR_GIG_REF_UI" class="link text-sm">View Gig →</a>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
332
  </div>
333
  </button>
334
  </div>
335
  </div>
336
  </section>
337
 
338
+ <!-- ======================== TRUST & REVIEWS ======================== -->
339
+ <section id="reviews" class="section">
340
  <div class="container">
341
  <div class="text-center max-w-3xl mx-auto">
342
+ <h2 class="h2">Client Reviews & Trust Signals</h2>
343
+ <p class="mt-3 opacity-80">5-star rated seller for AI content. Here’s what clients say.</p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
344
  </div>
345
 
346
  <div class="grid gap-6 md:grid-cols-3 mt-10">
347
  <blockquote class="quote">
348
+ <p>“The speed and quality were unmatched. NeuralNomadAI captured the exact mood I needed for my new book cover. Highly recommend!”</p>
349
+ <footer>— Sarah M. (Book Author)</footer>
350
  </blockquote>
351
  <blockquote class="quote">
352
+ <p>“Game-changer for our marketing. The custom prompts they engineered now save us hours a week on social content.”</p>
353
+ <footer>— David P. (Marketing Agency Lead)</footer>
354
  </blockquote>
355
  <blockquote class="quote">
356
+ <p>“Beyond expectations. The UI mockups gave us a perfect starting point for our dev team. Great communication.”</p>
357
+ <footer>— Omar K. (Startup CTO)</footer>
358
  </blockquote>
359
  </div>
360
+
361
+ <div class="grid grid-cols-2 sm:grid-cols-4 lg:grid-cols-5 gap-3 text-center mt-8">
362
+ <div class="pill">⭐ 5-Star Rating</div>
363
+ <div class="pill">⏱ On-Time Delivery</div>
364
+ <div class="pill">📈 100+ Projects</div>
365
+ <div class="pill">🔒 Confidential</div>
366
+ <div class="pill col-span-2 sm:col-span-1">🧾 Commercial Rights</div>
367
+ </div>
368
  </div>
369
  </section>
370
 
 
373
  <div class="container">
374
  <div class="grid gap-10 lg:grid-cols-2 items-start">
375
  <div>
376
+ <h2 class="h2">Our Mission</h2>
377
+ <p class="mt-3 opacity-80">
378
+ NeuralNomadAI was founded on the principle that cutting-edge AI should be accessible and practical for every creator and business.
379
+ Our mission is to transform vague concepts into high-fidelity, commercially-viable digital assets—fast. We bridge the gap between
380
+ imagination and execution, leveraging deep knowledge of modern models to deliver assets that precisely match your brand.
381
+ </p>
382
+
383
  <div class="grid mt-8 gap-4 sm:grid-cols-2">
384
  <div class="about-card">
385
+ <h3 class="font-bold">Core Capabilities</h3>
386
+ <p class="text-sm opacity-80">AI Image Generation, Prompt Engineering, Automation, Tool Integration.</p>
387
  </div>
388
  <div class="about-card">
389
+ <h3 class="font-bold">Tools</h3>
390
+ <p class="text-sm opacity-80">Midjourney, Stable Diffusion, DALL·E, Figma (and more).</p>
391
  </div>
392
  <div class="about-card">
393
+ <h3 class="font-bold">Project Volume</h3>
394
+ <p class="text-sm opacity-80"><span class="muted">[500+]</span> gigs completed on <span class="muted">[platform]</span>.</p>
395
  </div>
396
  <div class="about-card">
397
+ <h3 class="font-bold">Timezone & Support</h3>
398
+ <p class="text-sm opacity-80">Based in <span class="muted">[Your Timezone]</span>, swift responses for <span class="muted">[Region]</span> clients. Premium: unlimited revisions.</p>
399
  </div>
400
  </div>
401
  </div>
 
411
  <section id="contact" class="section">
412
  <div class="container">
413
  <div class="text-center max-w-2xl mx-auto">
414
+ <h2 class="h2">Contact / Hire</h2>
415
+ <p class="mt-3 opacity-80">Ready to hire? Connect directly on Fiverr or submit a custom request.</p>
416
+ <div class="mt-5 flex flex-wrap gap-3 justify-center">
417
+ <a href="FIVERR_PROFILE_URL_HERE" class="btn-primary">HIRE US NOW</a>
418
+ <a href="mailto:custom@neuralnomadai.com" class="btn-secondary">Email</a>
419
+ <a href="INSTAGRAM_URL_HERE" class="btn-secondary">Instagram</a>
420
+ <a href="LINKEDIN_URL_HERE" class="btn-secondary">LinkedIn</a>
421
  </div>
422
+ <p class="mt-4 text-sm opacity-70">
423
+ Response Time: Expect a reply within <span class="muted">[x]</span> business hours during <span class="muted">[days/hours]</span>.
424
+ </p>
425
  </div>
426
 
427
+ <!-- Optional custom request form (kept for convenience) -->
428
  <form id="contactForm" class="mt-10 max-w-2xl mx-auto grid gap-4" action="https://formspree.io/f/your-id" method="POST" novalidate>
429
  <div>
430
  <label class="label" for="name">Name</label>
 
436
  </div>
437
  <div>
438
  <label class="label" for="message">Project Brief</label>
439
+ <textarea class="input min-h-[140px]" id="message" name="message" required placeholder="Goals, audience, visual style, deliverables."></textarea>
440
  </div>
 
 
 
 
 
 
 
 
 
 
 
441
  <div class="flex items-center gap-3">
442
  <button class="btn-primary" type="submit">Send Message</button>
443
  <p id="formMsg" class="text-sm"></p>
 
451
  <footer class="border-t border-slate-200/60 dark:border-slate-700/50">
452
  <div class="container py-10 text-center">
453
  <nav class="flex items-center justify-center gap-5">
454
+ <a class="link muted" href="FIVERR_PROFILE_URL_HERE" rel="noopener">Fiverr</a>
455
+ <a class="link muted" href="LINKEDIN_URL_HERE" rel="noopener">LinkedIn</a>
456
+ <a class="link muted" href="INSTAGRAM_URL_HERE" rel="noopener">Instagram</a>
457
  </nav>
458
  <p class="text-xs opacity-70 mt-4">© 2024–2025 NeuralNomadAI. All rights reserved.</p>
459
+ <p class="text-xs opacity-70 mt-1">Privacy: We handle all client files with strict confidentiality. Final assets delivered with commercial rights. Custom form submissions are stored securely in a private database or Formspree.</p>
460
  </div>
461
  </footer>
462
 
463
  <!-- Lightbox Modal -->
464
  <dialog id="lightbox" class="rounded-xl p-0 backdrop:bg-black/60">
465
+ <button id="lightboxClose" class="absolute top-3 right-3 bg-black/60 text-white rounded-full p-2" aria-label="Close image">✕</button>
 
 
466
  <img id="lightboxImg" class="max-h-[90vh] w-auto object-contain rounded-xl" alt="Enlarged work sample" />
467
  </dialog>
468
 
 
469
  <script src="script.js" defer></script>
470
  </body>
471
  </html>