Spaces:
Running
Running
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,75 +1,49 @@
|
|
| 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 |
-
## Includes-based layout (optional)
|
| 51 |
-
This kit ships `asset/include.js` and two partials:
|
| 52 |
-
- `asset/partials/header.html`
|
| 53 |
-
- `asset/partials/footer.html`
|
| 54 |
-
|
| 55 |
-
To use them in your pages:
|
| 56 |
-
```html
|
| 57 |
-
<script src="/asset/include.js" defer></script>
|
| 58 |
-
<div id="site-header"></div>
|
| 59 |
-
<!-- page-specific content -->
|
| 60 |
-
<div id="site-footer"></div>
|
| 61 |
-
```
|
| 62 |
-
|
| 63 |
-
Edit the partials once and every page will pick them up at runtime.
|
| 64 |
-
|
| 65 |
-
## Notes & caveats
|
| 66 |
-
- If your PHP *echoed* dynamic HTML (templating), that content wonβt exist after stripping. Copy the intended HTML into the new `.html` files manually (the script keeps a `_backup_php/` folder for reference).
|
| 67 |
-
- If you used server-side logic (forms, mailers, DB), you must replace it with client-side logic or move to a **Docker Space** running PHP.
|
| 68 |
-
- Relative paths: when in doubt, use root-relative paths like `/asset/...` so links behave on every page.
|
| 69 |
-
|
| 70 |
-
## Rollback
|
| 71 |
-
Everything original is backed up under `_backup_php/`. To undo, just reset your branch:
|
| 72 |
-
```bash
|
| 73 |
-
git reset --hard HEAD~1
|
| 74 |
-
git clean -fd
|
| 75 |
-
```
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: NeuralNomadAI β Bootstrap Multi-Page Website
|
| 3 |
+
emoji: π§
|
| 4 |
+
sdk: static
|
| 5 |
+
pinned: true
|
| 6 |
+
colorFrom: blue
|
| 7 |
+
colorTo: indigo
|
| 8 |
+
tags:
|
| 9 |
+
- bootstrap
|
| 10 |
+
- php
|
| 11 |
+
- html
|
| 12 |
+
- css
|
| 13 |
+
- javascript
|
| 14 |
+
- portfolio
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
+
# π§ NeuralNomadAI β AI Imagery & Creative Automation (Bootstrap)
|
| 18 |
+
|
| 19 |
+
A fully developed, production-ready **Bootstrap 5.3** website for AI imagery and automation services.
|
| 20 |
+
Built with semantic HTML, clean PHP templating, and a responsive, modern UI.
|
| 21 |
+
|
| 22 |
+
---
|
| 23 |
+
|
| 24 |
+
## β¨ Features
|
| 25 |
+
|
| 26 |
+
- **Multi-page structure**: Home, Services & Pricing, Portfolio, Reviews, About, and Contact.
|
| 27 |
+
- **Responsive design**: Mobile-first Bootstrap layout with sticky navbar and carousel hero.
|
| 28 |
+
- **Interactive portfolio**: Filterable categories, image lightbox (modal), and fade-in animations.
|
| 29 |
+
- **Theme toggle**: Light/dark mode via `data-bs-theme` with `localStorage` persistence.
|
| 30 |
+
- **Validated contact form**: Client-side validation (ready for Formspree or backend integration).
|
| 31 |
+
- **Reusable PHP template**: All pages share a unified header, footer, and navigation.
|
| 32 |
+
- **SEO & accessibility**: Descriptive meta tags, aria-friendly components, and keyboard navigation.
|
| 33 |
+
|
| 34 |
+
---
|
| 35 |
+
|
| 36 |
+
## π§± Project Structure
|
| 37 |
+
|
| 38 |
+
neuralnomadai/
|
| 39 |
+
βββ index.php
|
| 40 |
+
βββ services.php
|
| 41 |
+
βββ portfolio.php
|
| 42 |
+
βββ reviews.php
|
| 43 |
+
βββ about.php
|
| 44 |
+
βββ contact.php
|
| 45 |
+
βββ template.php
|
| 46 |
+
βββ main.js
|
| 47 |
+
βββ styles.css
|
| 48 |
+
βββ assets/
|
| 49 |
+
βββ images/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|