Feature: Domain, Branding, Mission Alignment & Blog
IMPLEMENTATION RULES: Before implementing this plan, read and follow:
- WORKFLOW.md - The implementation process
- PLANS.md - Plan structure and best practices
Status: Completed ✅​
Goal: Launch DevContainer Toolbox (DCT) at dct.sovereignsky.no with original branding, aligned with SovereignSky's digital sovereignty mission, and a blog for content.
Last Updated: 2026-01-18
Prerequisites: PLAN-004 complete (tool display components)
Overview​
DevContainer Toolbox will be hosted at dct.sovereignsky.no as part of the SovereignSky initiative for Norwegian digital sovereignty. The site needs:
- Custom domain - dct.sovereignsky.no
- Original branding - logo, colors, social card (not copying SovereignSky, which has no branding yet)
- Mission alignment - messaging that connects to sovereignty themes
- Blog - for tutorials, announcements, and sovereignty topics
Context: SovereignSky​
sovereignsky.no is a digital sovereignty resource hub for Norway, created by helpers.no. It addresses the critical dependency of Norwegian digital infrastructure on foreign cloud services (subject to US CLOUD Act).
DevContainer Toolbox's role: Provide developers with open-source, locally-runnable, privacy-respecting development environments - reducing dependency on cloud-based dev tools.
Phase 1: Custom Domain Setup — ✅ DONE​
Tasks​
- 1.1 Create
website/static/CNAMEfile withdct.sovereignsky.no - 1.2 Update
website/docusaurus.config.ts:- Set
url: 'https://dct.sovereignsky.no' - Set
baseUrl: '/'
- Set
- 1.3 Update all hardcoded URLs (17 occurrences in README files and docs)
- 1.4 Configure GitHub Pages custom domain setting
- 1.5 Fix CI workflow to use correct file paths (index.mdx not index.md)
Manual Steps Required (for user)​
DNS Configuration (at your DNS provider for sovereignsky.no):
Type: CNAME
Name: dct
Value: terchris.github.io
GitHub Repository Settings:
- Go to repository Settings → Pages
- Under "Custom domain", enter:
dct.sovereignsky.no - Check "Enforce HTTPS" (after DNS propagates)
Phase 2: Branding — ✅ DONE​
Tasks​
- 2.1 Create logo for DevContainer Toolbox (logo.svg with shield, cube, code brackets)
- 2.2 Save logo as
website/static/img/logo.svg - 2.3 Create favicon from logo (multi-size favicon.ico)
- 2.4 Define color scheme in
website/src/css/custom.css:- Primary: Green #3a8f5e (light mode), #25c2a0 (dark mode)
- Secondary: Navy blue #1e3a5f
- 2.5 Create social card image
website/static/img/social-card.jpg - 2.6 Update
docusaurus.config.tswith logo and social card paths - 2.7 Create branding documentation page (
website/docs/contributors/branding.md)
Phase 3: Mission Alignment — ✅ DONE​
Tasks​
- 3.1 Create About page (
website/docs/about.md) with sovereignty mission - 3.2 Homepage features already emphasize local/open-source benefits
- 3.3 Update footer with SovereignSky section and links
- 3.4 "Edit this page" links configured via editUrl
Phase 4: Blog Setup — ✅ DONE​
Tasks​
- 4.1 Enable blog in
docusaurus.config.ts - 4.2 Create
website/blog/folder with folder-based structure - 4.3 Create
website/blog/authors.ymlwith author info - 4.4 Write first blog post: "Why DevContainer Toolbox Exists"
- 4.5 Write second blog post: "You Hold the Keys to National Sovereignty"
- 4.6 Add Blog to navbar in
docusaurus.config.ts - 4.7 Test blog functionality on live site
Phase 5: Final Integration & Testing — ✅ DONE​
Tasks​
- 5.1 Test full site on live domain (dct.sovereignsky.no):
- All pages load ✓
- Logo displays correctly ✓
- Colors work in light/dark mode ✓
- Blog works with both posts ✓
- About page accessible in sidebar ✓
- Footer links work ✓
- 5.2 Check responsive design (mobile) - hamburger menu, stacked layout works
- 5.3 Verify social card preview - OG tags configured, image loads (1408×752)
- 5.4 Fix AI demo GIF path (was hardcoded to old baseUrl)
- 5.5 All changes committed and merged via PRs
Acceptance Criteria​
- Site builds and deploys to dct.sovereignsky.no
- Custom logo and branding applied
- About page explains sovereignty mission
- Blog is functional with two posts
- Footer links to SovereignSky and helpers.no
- Social card displays correctly when shared
- Works in both light and dark mode
Pull Requests​
- PR #21: Initial domain, branding, mission, and blog setup
- PR #22: Fix CI workflow file paths (index.mdx)
- PR #23: Fix AI demo GIF path using useBaseUrl
Files Created​
website/static/CNAME- Custom domainwebsite/static/img/logo.svg- Logowebsite/static/img/social-card.jpg- Social sharing imagewebsite/docs/about.md- About/mission pagewebsite/blog/authors.yml- Blog author infowebsite/blog/2026-01-18-why-devcontainer-toolbox-exists/- First blog postwebsite/blog/2026-01-15-developer-power-sovereignty/- Second blog postwebsite/docs/contributors/branding.md- Branding guidelines
Files Modified​
website/docusaurus.config.ts- Domain, blog, navbar, footer, logoswebsite/src/css/custom.css- Brand colors, footer stylingwebsite/src/components/AiDemo/index.tsx- Fixed GIF path.github/workflows/ci-tests.yml- Fixed documentation file paths- Multiple README files - Updated URLs to dct.sovereignsky.no