https://github.com/slice-soft/ss-keel-landing
https://github.com/slice-soft/ss-keel-landing
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/slice-soft/ss-keel-landing
- Owner: slice-soft
- License: mit
- Created: 2026-02-27T21:10:59.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-03-01T16:42:52.000Z (4 months ago)
- Last Synced: 2026-03-01T19:06:42.302Z (4 months ago)
- Language: Astro
- Homepage: https://keel-go.dev/
- Size: 74.2 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# ss-keel-landing
Landing page for [keel-go.dev](https://keel-go.dev) — the main website for the Keel framework.
[](https://github.com/slice-soft/ss-keel-landing/actions)



---
## Stack
- **[Astro](https://astro.build)** — static site generation
- No JS frameworks — scoped HTML + CSS per component
---
## Local Development
```bash
npm install
npm run dev
```
The site will be available at `http://localhost:4321`.
---
## Structure
```
src/
├── layouts/
│ └── Layout.astro # Base: meta tags, SEO, design system CDN, anti-FOUC
├── components/
│ ├── Nav.astro # Navbar with theme toggle and links
│ ├── Hero.astro # Hero section with code examples
│ ├── Features.astro # 4 framework pillars
│ ├── Architecture.astro # Module→Controller→Service→Repository diagram
│ ├── Addons.astro # Addon ecosystem grid
│ ├── CLI.astro # keel CLI demo terminal
│ ├── CTA.astro # Final call to action
│ └── Footer.astro # Footer with links
└── pages/
└── index.astro # Main page
```
---
## Build
```bash
npm run build # Outputs to dist/
npm run preview # Preview the build locally
```
---
## Contributing
See [CONTRIBUTING.md](./CONTRIBUTING.md) for repository-specific rules.
The base workflow, commit conventions, and community standards live in [ss-community](https://github.com/slice-soft/ss-community/blob/main/CONTRIBUTING.md).
## Community
| Document | |
|---|---|
| [CONTRIBUTING.md](https://github.com/slice-soft/ss-community/blob/main/CONTRIBUTING.md) | Workflow, commit conventions, and PR guidelines |
| [GOVERNANCE.md](https://github.com/slice-soft/ss-community/blob/main/GOVERNANCE.md) | Decision-making, roles, and release process |
| [CODE_OF_CONDUCT.md](https://github.com/slice-soft/ss-community/blob/main/CODE_OF_CONDUCT.md) | Community standards |
| [SECURITY.md](https://github.com/slice-soft/ss-community/blob/main/SECURITY.md) | How to report vulnerabilities |