Files
aitbc/website
oib fdc3012780 feat: add skeleton loaders to marketplace and integrate global header across docs
Marketplace:
- Add skeleton loading states for stats grid and GPU offer cards
- Show animated skeleton placeholders during data fetch
- Add skeleton CSS with shimmer animation and dark mode support
- Wrap stats section in #stats-grid container for skeleton injection

Trade Exchange:
- Replace inline header with data-global-header component
- Switch GPU offers to production API (/api/miners/list)
- Add fallback to demo
2026-02-15 20:44:04 +01:00
..
```
2025-12-29 18:04:04 +01:00
```
2025-12-29 18:04:04 +01:00
```
2025-12-28 21:05:53 +01:00

# AITBC Website

Production website for the AITBC platform.

## File Structure

```
website/
├── index.html              # Homepage — platform overview & achievements
├── 404.html                # Custom error page
├── aitbc-proxy.conf        # Nginx reverse proxy configuration
├── favicon.svg
├── font-awesome-local.css
├── docs/                   # All documentation (16 pages)
│   ├── index.html          # Docs landing — search, reader-level cards
│   ├── clients.html        # Client guide — jobs, wallet, pricing, API
│   ├── miners.html         # Miner guide — GPU setup, earnings, Ollama
│   ├── developers.html     # Developer guide — SDKs, contributing, bounties
│   ├── full-documentation.html  # Complete technical reference
│   ├── components.html     # Architecture & components overview
│   ├── flowchart.html      # End-to-end system flow diagram
│   ├── api.html            # REST API reference
│   ├── blockchain-node.html
│   ├── coordinator-api.html
│   ├── explorer-web.html
│   ├── marketplace-web.html
│   ├── wallet-daemon.html
│   ├── trade-exchange.html
│   ├── pool-hub.html
│   ├── browser-wallet.html # Redirect → /wallet/
│   ├── css/docs.css        # Shared stylesheet
│   └── js/theme.js         # Dark/light theme toggle
└── wallet/
    └── index.html          # Browser wallet landing page
```

## Deployment

Copy the website files to your web server's document root:

```bash
# Example using scp (replace with your server details)
scp -r website/* your-server:/var/www/html/
```

## Key Features

- **Unified header/nav** across all 15 doc pages with theme toggle
- **Live search** on docs index (client-side, 15-page index)
- **Shared CSS** — zero inline `<style>` blocks, one `docs.css`
- **Shared JS** — theme persistence via `theme.js`
- **Zero dead links** — all `href="#"` replaced with real targets
- **Font Awesome 6** consistently across all pages
- **Dark/light mode** with localStorage persistence