arthelokyo/astrowind

Astroastrowind.vercel.app

⭕️ AstroWind: A free template using Astro v7 and Tailwind CSS v4. Astro starter theme.

astrojavascripttailwindtailwindcsstemplatethemeastro-templatestatic-sitestatic-site-generatorbloglanding-pagetailwind-css-template
スター成長
スター
5.9k
フォーク
1.7k
週間成長
+15
Issue
1
2k4k
2022年6月2023年11月2025年4月2026年9月
README

🚀 AstroWind

AstroWind Lighthouse Score

🌟 Most starred & forked Astro theme in 2022, 2023, 2024 & 2025. 🌟

AstroWind is a free and open-source template to make your website using Astro v7 + Tailwind CSS v4. Ready to start a new project and designed taking into account web best practices.

  • Production-ready scores in PageSpeed Insights reports.
  • ✅ Integration with Tailwind CSS v4 supporting Dark mode and RTL.
  • Fast and SEO friendly blog with automatic RSS feed, MDX support, Categories & Tags, Social Share, ...
  • Image Optimization (using new Astro Assets and Unpic for Universal image CDN).
  • ✅ Generation of project sitemap based on your routes.
  • Open Graph tags for social media sharing.
  • Analytics built-in Google Analytics integration.

AstroWind Theme Screenshot

arthelokyo License Maintained Contributions Welcome Known Vulnerabilities Stars Forks


Table of Contents

Demo

📌 https://astrowind.vercel.app/


TL;DR

npm create astro@latest -- --template arthelokyo/astrowind

Getting started

AstroWind tries to give you quick access to creating a website using Astro v7 + Tailwind CSS v4. It's a free theme which focuses on simplicity, good practices and high performance.

Very little vanilla javascript is used only to provide basic functionality so that each developer decides which framework (React, Vue, Svelte, Solid JS...) to use and how to approach their goals.

Note: Requires Node.js >= 22.22.3 (see .nvmrc). The template currently uses output: 'static', but the blog only works with prerender = true.

Project structure

Inside AstroWind template, you'll see the following folders and files:

/
├── public/
│   ├── _headers
│   └── robots.txt
├── src/
│   ├── assets/
│   │   ├── favicons/
│   │   ├── images/
│   │   └── styles/
│   │       └── tailwind.css
│   ├── components/
│   │   ├── blog/
│   │   ├── common/
│   │   ├── ui/
│   │   ├── widgets/
│   │   │   ├── Header.astro
│   │   │   └── ...
│   │   ├── CustomStyles.astro
│   │   ├── Favicons.astro
│   │   └── Logo.astro
│   ├── content.config.ts
│   ├── data/
│   │   └── post/
│   │       ├── post-slug-1.md
│   │       ├── post-slug-2.mdx
│   │       └── ...
│   ├── layouts/
│   │   ├── Layout.astro
│   │   ├── MarkdownLayout.astro
│   │   └── PageLayout.astro
│   ├── pages/
│   │   ├── [...blog]/
│   │   │   ├── [category]/
│   │   │   ├── [tag]/
│   │   │   ├── [...page].astro
│   │   │   └── index.astro
│   │   ├── index.astro
│   │   ├── 404.astro
│   │   ├-- rss.xml.ts
│   │   └── ...
│   ├── utils/
│   ├── config.yaml
│   └── navigation.ts
├── package.json
├── astro.config.ts
└── ...

Astro looks for .astro or .md files in the src/pages/ directory. Each page is exposed as a route based on its file name.

There's nothing special about src/components/, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.

Any static assets, like images, can be placed in the public/ directory if they do not require any transformation or in the assets/ directory if they are imported directly.

Edit AstroWind on CodeSandbox Open in StackBlitz

🧑‍🚀 Seasoned astronaut? Delete this file README.md. Update src/config.yaml and contents. Have fun!


Commands

All commands are run from the root of the project, from a terminal:

Command Action
npm install Installs dependencies
npm run dev Starts local dev server at localhost:4321
npm run build Build your production site to ./dist/
npm run preview Preview your build locally, before deploying
npm run check Check your project for errors
npm run fix Run Eslint and format codes with Prettier
npm run astro ... Run CLI commands like astro add, astro preview

Configuration

Basic configuration file: ./src/config.yaml

site:
  name: 'Example'
  site: 'https://example.com'
  base: '/' # Change this if you need to deploy to Github Pages, for example
  trailingSlash: false # Generate permalinks with or without "/" at the end

  googleSiteVerificationId: false # Or some value,

# Default SEO metadata
metadata:
  title:
    default: 'Example'
    template: '%s — Example'
  description: 'This is the default meta description of Example website'
  robots:
    index: true
    follow: true
  openGraph:
    site_name: 'Example'
    images:
      - url: '~/assets/images/default.png'
        width: 1200
        height: 628
    type: website
  twitter:
    handle: '@twitter_user'
    site: '@twitter_user'
    cardType: summary_large_image

i18n:
  language: en
  textDirection: ltr

apps:
  blog:
    isEnabled: true # If the blog will be enabled
    postsPerPage: 6 # Number of posts per page

    post:
      isEnabled: true
      permalink: '/blog/%slug%' # Variables: %slug%, %year%, %month%, %day%, %hour%, %minute%, %second%, %category%
      robots:
        index: true

    list:
      isEnabled: true
      pathname: 'blog' # Blog main path, you can change this to "articles" (/articles)
      robots:
        index: true

    category:
      isEnabled: true
      pathname: 'category' # Category main path /category/some-category, you can change this to "group" (/group/some-category)
      robots:
        index: true

    tag:
      isEnabled: true
      pathname: 'tag' # Tag main path /tag/some-tag, you can change this to "topics" (/topics/some-category)
      robots:
        index: false

    isRelatedPostsEnabled: true # If a widget with related posts is to be displayed below each post
    relatedPostsCount: 4 # Number of related posts to display

analytics:
  vendors:
    googleAnalytics:
      id: null # or "G-XXXXXXXXXX"

ui:
  theme: 'system' # Values: "system" | "light" | "dark" | "light:only" | "dark:only"

Customize Design

With Tailwind CSS v4, all configuration is CSS-first. To customize Font families, Colors or more Elements refer to the following files:

  • src/components/CustomStyles.astro — CSS variables for colors and fonts
  • src/assets/styles/tailwind.css — Tailwind theme tokens (@theme), custom utilities (@utility), and plugins

Deploy

Deploy to production (manual)

You can create an optimized production build with:

npm run build

Now, your website is ready to be deployed. All generated files are located at dist folder, which you can deploy the folder to any hosting service you prefer.

Deploy to Netlify

Clone this repository on your own GitHub account and deploy it to Netlify:

Netlify Deploy button

Deploy to Vercel

Clone this repository on your own GitHub account and deploy to Vercel:

Deploy with Vercel

Deploy to PandaStack

Clone this repository on your own GitHub account and deploy to PandaStack:

Deploy to PandaStack


FAQ

Is AstroWind v1 still maintained? Yes, in maintenance mode: v1 receives dependency updates and bug fixes, while new development goes to AstroWind v2 (October 2026).

How do I disable the blog, change the Open Graph image, deploy under a sub-path, connect a CMS, deploy to Cloudflare…? Ask your AI coding assistant. AstroWind is AI-ready: the repository ships an AGENTS.md with the project conventions and step-by-step skills in .agents/skills/ for the most common tasks, so Claude Code, Codex/ChatGPT, Cursor, Copilot and similar tools can do them reliably (and you can read the skills yourself).

Where do blog posts go? src/data/post/ as .md or .mdx files. They are read at build time.

Where do I change colors and fonts? Colors in src/components/CustomStyles.astro (CSS variables for light and dark), Tailwind tokens and utilities in src/assets/styles/tailwind.css, fonts in the fonts entry of astro.config.ts.

Which Node.js version do I need? Node.js 22.22.3 or newer (.nvmrc).


Contributing

If you have any ideas, suggestions or find any bugs, feel free to open a discussion, an issue or create a pull request. That would be very useful for all of us and we would be happy to listen and take action.

Acknowledgements

Initially created by Arthelokyo and maintained by a community of contributors.

License

AstroWind is licensed under the MIT license — see the LICENSE file for details.

関連リポジトリ
Chalarangelo/30-seconds-of-code

Coding articles to level up your development skills

JavaScriptnpmawesomeCreative Commons Attribution 4.0 Internationalawesome-listjavascript
30secondsofcode.org
129k12.5k
unionlabs/union

The trust-minimized, zero-knowledge bridging protocol, designed for censorship resistance, extremely high security, and usage in decentralized finance.

Rustcrates.ioApache License 2.0blockchaincosmos
union.build
73.8k3.9k
withastro/astro

The web framework for content-driven websites. ⭐️ Star to support our work!

TypeScriptnpmlibraryOtherstatic-site-generatorblog
astro.build
62.4k3.8k
yoavbls/pretty-ts-errors

🔵 Make TypeScript errors prettier and human-readable in VSCode 🎀

TypeScriptnpmMIT Licensetypescriptvscode
marketplace.visualstudio.com/items
14.1k111
emdash-cms/emdash

EmDash is a full-stack TypeScript CMS based on Astro; the spiritual successor to WordPress

TypeScriptnpmMIT Licenseastrocms
emdashcms.com
12.3k1.1k
uidotdev/usehooks

A collection of modern, server-safe React hooks – from the ui.dev team

MDXMIT Licensereacthooks
usehooks.com
11.5k586
withastro/starlight

🌟 Build beautiful, accessible, high-performance documentation websites with Astro

TypeScriptnpmlibraryMIT Licenseastrodocs-generator
starlight.astro.build
9.2k1k
anse-app/chatgpt-demo

Minimal web UI for ChatGPT.

TypeScriptnpmMIT Licensechatgptopenai
chatgpt.ddiu.me
7.9k3.6k
skeletonlabs/skeleton

Skeleton is an adaptive design system powered by Tailwind CSS.

TypeScriptnpmMIT Licensecomponentssvelte
skeleton.dev
6.1k392
satnaing/astro-paper

A minimal, accessible and SEO-friendly Astro blog theme.

AstrolibraryMIT Licenseastroblog
astro-paper.pages.dev
5k1.1k
saicaca/fuwari

✨A static blog template built with Astro.

AstroMIT Licenseastroblog
fuwari.vercel.app
5k1.3k
babaohuang/GeminiProChat

Minimal web UI for GeminiPro.

TypeScriptnpmappMIT Licenseastrogemini
geminiprochat.com
4.9k12.4k