https://github.com/radical-data/radical-data-astro
The website for radicaldata.org
https://github.com/radical-data/radical-data-astro
Last synced: 2 months ago
JSON representation
The website for radicaldata.org
- Host: GitHub
- URL: https://github.com/radical-data/radical-data-astro
- Owner: radical-data
- License: mit
- Created: 2022-10-28T13:14:43.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-11-18T18:59:29.000Z (7 months ago)
- Last Synced: 2025-11-20T16:24:44.391Z (7 months ago)
- Language: Astro
- Size: 39.9 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README

# [ASTRO-CUBE](https://astro-cube.vercel.app) 🧊
a tiny, almost-unopinionated [Astro](https://astro.build/) starter for your next blog, documentation, personal/marketing website, and more.
it comes with the [CUBE CSS](https://cube.fyi/) file structure, a methodology for managing stylesheets efficiently no matter the size of the project.
the project is mostly barebones, the goal isn't to provide a batteries-included template, just an easy starter kit and stylesheets to copy/paste from.
most styles are for demo purposes and to explain the underlying philosophy: "Be the browser's mentor, not its micromanager" (see [buildexcellentwebsit.es](https://buildexcellentwebsit.es)).
## features
- **[CUBE CSS](https://cube.fyi/) implementation**: take a look at the docs, they are concise and explain way better than i would
- **fluid and responsive**: it looks great no matter the device size
- [Every Layout](https://every-layout.dev/) examples for layout elements
- [Utopia](https://utopia.fyi/) for fluid `clamp()`-based font sizes and spacing
- **lightweight**: 💯 [lighthouse score](https://developer.chrome.com/en/docs/lighthouse/performance/performance-scoring/) across the board — not surprising considering the size of the project, but worth mentioning
- **dark-mode ready**: implement your own theme switcher if you're into that sort of thing, all you have to do is toggle the `data-theme` attribute on the body
- **SEO** ready: basic SEO meta-tags are set-up, with `sitemap`s automatically generated at build time
## installation
### clone this repo
```bash
git clone https://github.com/williamhzo/astro-cube.git
```
### instal dependencies
```bash
cd astro-cube
```
```bash
npm i
```
### spin up local dev server
```bash
npm run dev
```
### build to `./dist/`
```bash
npm run build
```
### preview production build
```bash
npm run preview
```
### ...or use the template directly ➡️ "Use this template" > "Create a new repository"
## contributions are welcome! 👋
> **Note**
>
> please note that this project is initially made for personal use, i've been using this minimal set-up a lot lately and having it ready saves me a ton of time when starting a new project.
>
> in that sense, this template is not set in stone and will likely evolve in the coming weeks.
>
> that said, it's great if it can be helpful to some folks out there, i'm open to feedback and greatly appreciate contributions, feel free to chip in for fixes, suggestions, or features! let me know if you have improvement ideas :)
---
## credits
greater minds than mine are behind the choices in this kit, i'd like to mention them for the inspiration and learning provided:
### **[Astro core & docs team](https://docs.astro.build/en/getting-started/)**
along with contributors, for a great onboarding experience and a wholesome community.
### **[Andy Bell](https://andy-bell.co.uk/)**
Andy is a great source of inspiration for building robust UI working with the browser, rather than against it. but also for reminding me that CSS is an extremely powerful tool as it is. CUBE CSS really clicked to me as it brought pure "traditional" CSS to the component-first world of today.
- [Every Layout](https://every-layout.dev/)
- [CUBE CSS](https://cube.fyi/)
### **[Heydon Pickering](https://heydonworks.com/)**
Heydon provides amazing insights and spicy takes on how to build for the web, from an inclusive and accessible perspective.
- [Inclusive Components](https://inclusive-components.design/)
- [Webbed Briefs](https://briefs.video/)
- [Every Layout](https://every-layout.dev/)
### **[Lene Saile](https://www.lenesaile.com/en/)**
Lene made an amazing [Eleventy](https://www.11ty.dev/) starter based on CUBE CSS which is way more mature and complete than this one. it comes batteries included to build a full-blown blog with 11y in a breeze, i'd definitely recommend checking it out.
her starter greatly inspired me to build one for Astro (it will be a separate one from this minimal one).
- [Eleventy Excellent](https://github.com/madrilene/eleventy-excellent)