Skip to content

kopilot-ai/kopilot-ai.github.io

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

kopilot-site

Product website and documentation for Kopilot — the autonomous AI-powered Kubernetes DevOps agent.

Structure

kopilot-site/
├── index.html                  # Landing page
├── docs/
│   ├── index.html              # Documentation hub
│   ├── getting-started.html    # Quick start guide
│   ├── architecture.html       # Architecture deep-dive
│   ├── skills.html             # Skills reference
│   ├── api-reference.html      # API endpoints
│   ├── configuration.html      # Environment variables
│   ├── deployment.html         # Helm, Docker, CRDs
│   └── security.html           # Safety mechanisms
├── assets/
│   ├── css/main.css            # Design system
│   └── js/main.js              # Interactions
└── README.md

Local Development

Serve the site locally with any static file server:

# Python
python -m http.server 3000

# Node.js (npx)
npx serve .

# VS Code Live Server extension
# Right-click index.html → "Open with Live Server"

Deploying to GitHub Pages

  1. Push this repo to GitHub (e.g., kopilot-ai/kopilot-ai.github.io)
  2. Go to Settings → Pages
  3. Set source to Deploy from a branchmain / / (root)
  4. The site will be available at https://kopilot-ai.github.io/

For a custom domain, add a CNAME file with your domain name.

Tech Stack

  • Pure HTML, CSS, JavaScript (no build step)
  • Inter + JetBrains Mono fonts via Google Fonts
  • Design inspired by Linear, Vercel, and Raycast
  • Dark theme with purple/violet/cyan accent palette

Optional Analytics

assets/js/main.js includes provider-optional CTA tracking. By default it is disabled.

To enable it, define window.KOPILOT_ANALYTICS before the script runs. Example:

<script>
  window.KOPILOT_ANALYTICS = {
    enabled: true,
    provider: "plausible",
    domain: "kopilot-ai.github.io",
    debug: false
  };
</script>

Supported modes:

  • plausible: auto-loads the Plausible script when domain is set
  • umami: auto-loads when scriptUrl and websiteId are set
  • posthog: event capture works if your PostHog snippet is already present on the page

Primary CTA events:

  • cta_nav_github_star
  • cta_hero_cost_workflow
  • cta_hero_install
  • cta_proof_use_cases
  • cta_trust_security
  • cta_banner_design_partner
  • cta_design_partner_apply
  • cta_cost_use_cases_quick_start

License

MIT

About

Kopilot product website and documentation

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors