Skip to content
Velocity Velocity
View Docs
v1.0 Public Beta is Live

Your next site starts here.

Design tokens, accessible components, SEO, and i18n configured from the first commit. Velocity ships what other starters leave as homework.

Shipped to production weekly.

terminal
v6
Astro

Server islands, content layer, zero-JS by default

v4
Tailwind CSS

Lightning CSS engine, @theme API, OKLCH colors

5.8+
TypeScript

Strict mode, path aliases, full type inference

19+
React

Server components, actions, use() hook support

Everything you need.
Nothing you don't.

We stripped away the bloat and kept the primitives that actually speed up development for agencies and freelancers.

Design Tokens & Dark Mode

Complete design system using Tailwind v4's CSS-first configuration with built-in dark mode. Semantic color tokens, system preference detection, and localStorage persistence.

src/styles/themes/default.css
1/* src/styles/themes/default.css — swap this file to re-theme */
2:root {
3 /* Semantic Tokens - Light Mode */
4 --background: var(--gray-0);
5 --foreground: var(--gray-900);
6 --border: var(--gray-200);
7 --primary: var(--gray-900);
8 --primary-foreground: var(--gray-0);
9 --accent: var(--brand-500);
10 --card: var(--gray-0);
11 --ring: var(--gray-900);
12}
13
14/* Dark Mode */
15.dark {
16 --background: var(--gray-950);
17 --foreground: var(--gray-50);
18 --border: var(--gray-800);
19 --primary: var(--gray-0);
20 --primary-foreground: var(--gray-900);
21}
Lighthouse Report

Perfect scores. Out of the box.

Performance
Accessibility
Best Practices
SEO

*Tested in production for landing page demo · Desktop & Mobile emulation · Results will vary.

One Command

Scaffold exactly what you need.

Not every project needs everything. The Velocity CLI lets you pick your starting point.

Need custom pages? Use --pages and they're generated with routes and nav already wired. Pair it with --i18n and you get localized versions too—translations scaffolded and ready.

No prompts to click through. No wizard to escape. Just flags that do what they say.

1
command to start
5
flags to customize
40+
components included
terminal
$
pnpm create velocity-astro@latest my-site
# Add what you need
--demo # Sample landing page + blog posts
--components # 24 optional UI components
--i18n # Multi-language routing configured
--pages # Generate pages (+ i18n versions)
-y # Skip prompts, use defaults
Project created successfully!
cd my-site && pnpm dev
Velocity

Stop configuring. Start building.

Join the developers building faster, better websites with Velocity. Open source and free forever.

View Docs