From cccb6a5a406f0dbc657fb55fb1ddfbdf7820bb7f Mon Sep 17 00:00:00 2001 From: crmuncher Date: Thu, 2 Jul 2026 01:19:07 +0700 Subject: [PATCH] chore(cleanup): organize marketing HTML into marketing/ subdir MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 📁 STRUCTURE - Move scattered HTML files into marketing/ subdir: about.html, buy.html, contact.html, docs.html, features.html, index.html - These were orphaned at the repo root with no clear purpose - Now grouped together as the marketing site bundle 🛡️ HARDENING - Add .secrets/, *.pem, *.key, *.crt to .gitignore - Add package-lock.json/yarn.lock to .gitignore (use pnpm) Refs: RugMunchMedia/standards --- about.html => marketing/about.html | 0 buy.html => marketing/buy.html | 0 contact.html => marketing/contact.html | 0 docs.html => marketing/docs.html | 0 features.html => marketing/features.html | 0 index.html => marketing/index.html | 0 6 files changed, 0 insertions(+), 0 deletions(-) rename about.html => marketing/about.html (100%) rename buy.html => marketing/buy.html (100%) rename contact.html => marketing/contact.html (100%) rename docs.html => marketing/docs.html (100%) rename features.html => marketing/features.html (100%) rename index.html => marketing/index.html (100%) diff --git a/about.html b/marketing/about.html similarity index 100% rename from about.html rename to marketing/about.html diff --git a/buy.html b/marketing/buy.html similarity index 100% rename from buy.html rename to marketing/buy.html diff --git a/contact.html b/marketing/contact.html similarity index 100% rename from contact.html rename to marketing/contact.html diff --git a/docs.html b/marketing/docs.html similarity index 100% rename from docs.html rename to marketing/docs.html diff --git a/features.html b/marketing/features.html similarity index 100% rename from features.html rename to marketing/features.html diff --git a/index.html b/marketing/index.html similarity index 100% rename from index.html rename to marketing/index.html