Official static website for MATTEBLACK STUDIOS — a privacy-first product studio publishing sovereign AI workflow packs.
Live site: https://matteblackstudios.com
HTML, CSS, and one local JavaScript file. No frameworks, no CDNs, no analytics, no cookies, no telemetry.
The site catalogs three MATTEBLACK STUDIOS workflow packs:
| Product | GitHub | Gumroad |
|---|---|---|
| Sovereign AI Starter Pack — Ollama Edition | sovereign-ai-starter-pack-ollama | Get on Gumroad |
| Local AI Wallpaper & Photo Workflow Pack | wallpaper-workflow-pack | Get on Gumroad |
| Performance Review Transformation Pack | PERFORMANCE_REVIEW_PACK | Get on Gumroad |
Product cards live on /PRODUCTS/index.html.
These rules are non-negotiable across all site code:
- No tracking — no analytics, pixels, session recording, or telemetry
- No cookies — no
document.cookie,localStorageidentifiers, or similar - No external dependencies — no CDN fonts, scripts, or stylesheets
- No device detection — no user-agent sniffing or JavaScript viewport breakpoints
- CSS-only responsiveness — layout adapts using
@media (min-width: …)only
Checkout links (Gumroad) are user-initiated external navigations, not embedded third-party scripts.
index.html Home page
styles.css Global design system and layout (mobile-first)
reveal.js Optional scroll reveals and mobile nav toggle
_headers Netlify security headers
privacy.html Privacy policy
terms.html Terms of service
safety.html Safety and compliance disclosures
PRODUCTS/
index.html Product catalog (three live products)
assets/
hero-bg.png Site background image
performance_review_thumbnail.png
products/ Product thumbnails
From the project root:
python3 -m http.server 8080Open http://localhost:8080. Root-absolute paths (/styles.css) require serving from the site root, not opening files directly via file://.
Deploy the project root as a static site. No install or build step required.
- Connect this repository to Netlify, or drag-and-drop the site folder.
- Build command: (none)
- Publish directory:
/(repository root) _headersapplies recommended security headers on Netlify automatically.
A production-only copy of this site is maintained separately for Netlify redeploys. Website content (HTML, CSS, JS, assets) should stay identical between both copies; only repository scaffolding differs here.
flowchart TD
subgraph Local Workspace
A[03_VAULT/MATTEBLACKSTUDIOS_SITE<br/>Production-only version]
B[GITHUB/MATTEBLACKSTUDIOS_SITE<br/>Repo version with scaffolding]
end
A -->|Manual Deploy| C(Netlify Hosting<br/>matteblackstudios.netlify.app)
A -->|Synced Website Content| B
subgraph GitHub Repo
B --> D[Repo Scaffolding<br/>.gitignore<br/>LICENSE<br/>README<br/>SECURITY<br/>CONTRIBUTING<br/>CODE_OF_CONDUCT]
B --> E[Commit + Push<br/>Author: MatteBlackStudios]
end
C --> F[Live Website<br/>Static, privacy-first storefront]
See CONTRIBUTING.md, SECURITY.md, and CODE_OF_CONDUCT.md.
MIT — see LICENSE.