New Project
Free, customizable and production-ready template for Astro using Tailwind CSS.

🌟 Most starred & forked Astro theme in 2022, 2023, 2024 & 2025. 🌟
AstroWind is a free and open-source template to make your website using Astro v6 + Tailwind CSS v4. Ready to start a new project and designed taking into account web best practices.
📌 https://astrowind.vercel.app/
We're gearing up for AstroWind 2.0, and we want it to be shaped by you, our community. Join the discussion and share your ideas, suggestions, and feedback to help us make AstroWind even better.
Share Your Feedback in Our Discussion!
npm create astro@latest -- --template arthelokyo/astrowind
AstroWind tries to give you quick access to creating a website using Astro v6 + 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.12.0. The template currently uses
output: 'static', but the blog only works withprerender = true.
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.js├── 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.
🧑🚀 Seasoned astronaut? Delete this file
README.md. Updatesrc/config.yamland contents. Have fun!
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 |
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 exampletrailingSlash: false # Generate permalinks with or without "/" at the endgoogleSiteVerificationId: false # Or some value,# Default SEO metadatametadata:title:default: 'Example'template: '%s — Example'description: 'This is the default meta description of Example website'robots:index: truefollow: trueopenGraph:site_name: 'Example'images:- url: '~/assets/images/default.png'width: 1200height: 628type: websitetwitter:handle: '@twitter_user'site: '@twitter_user'cardType: summary_large_imagei18n:language: entextDirection: ltrapps:blog:isEnabled: true # If the blog will be enabledpostsPerPage: 6 # Number of posts per pagepost:isEnabled: truepermalink: '/blog/%slug%' # Variables: %slug%, %year%, %month%, %day%, %hour%, %minute%, %second%, %category%robots:index: truelist:isEnabled: truepathname: 'blog' # Blog main path, you can change this to "articles" (/articles)robots:index: truecategory:isEnabled: truepathname: 'category' # Category main path /category/some-category, you can change this to "group" (/group/some-category)robots:index: truetag:isEnabled: truepathname: 'tag' # Tag main path /tag/some-tag, you can change this to "topics" (/topics/some-category)robots:index: falseisRelatedPostsEnabled: true # If a widget with related posts is to be displayed below each postrelatedPostsCount: 4 # Number of related posts to displayanalytics:vendors:googleAnalytics:id: null # or "G-XXXXXXXXXX"ui:theme: 'system' # Values: "system" | "light" | "dark" | "light:only" | "dark:only"
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 fontssrc/assets/styles/tailwind.css — Tailwind theme tokens (@theme), custom utilities (@utility), and pluginsYou 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.
Clone this repository on your own GitHub account and deploy it to Netlify:
Clone this repository on your own GitHub account and deploy to Vercel:
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.
Initially created by Arthelokyo and maintained by a community of contributors.
AstroWind is licensed under the MIT license — see the LICENSE file for details.