eliana wiki
A starter Astro Starlight documentation site for jubilancy.github.io, configured for GitHub Pages deployment.
Features
- Astro Starlight docs site
- Built-in search (Cmd/Ctrl + K)
- Built-in light/dark mode toggle
- GitHub Pages deployment via Actions
- Edit this page links to the GitHub web editor
- Sample Markdown notes and guides
- Starter sitemap page and themed callouts
- Custom color palette hooks for
#f4a261and#2a9d8f
Quick start
npm installnpm run devThen open the local URL Astro prints in your terminal.
Deploy to GitHub Pages
- Push this repo to
jubilancy/jubilancy.github.io. - In GitHub, open Settings → Pages.
- Set Source to GitHub Actions.
- Push to
mainand let the workflow publish the site.
Project structure
.├── .github/workflows/deploy.yml├── astro.config.mjs├── package.json├── public/favicon.svg├── src/content/docs/├── src/components/└── src/styles/custom.cssNotes
- This repo is set up as a user site, so the public URL is
https://jubilancy.github.io. - Because this is a user site, no Astro
basepath is needed. - Starlight already includes search, breadcrumbs, on-page table of contents, and dark mode.
- More advanced features like backlinks, graph view, hover previews, and git-history freshness need custom components or build scripts.