All Templates / Starters

AstroWind

AstroWind

Template for creating websites with Astro 3.0 + Tailwind CSS

Deploy AstroWind

AstroWind Site

brody192/astrowind-template

Just deployed

šŸš€ AstroWind

AstroWind Lighthouse Score

šŸŒŸ Most starred & forked Astro theme in 2022 šŸŒŸ

AstroWind is a free and open-source template to make your website using Astro 3.0 + Tailwind CSS. 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 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, and Splitbee integration.
AstroWind Theme Screenshot
Table of Contents

Getting started

AstroWind tries to give you quick access to creating a website using Astro 3.0 + Tailwind CSS. It's a free theme 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..

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/
ā”‚   ā”‚   ā”œā”€ā”€ post/
ā”‚   ā”‚   ā”‚   ā”œā”€ā”€ post-slug-1.md
ā”‚   ā”‚   ā”‚   ā”œā”€ā”€ post-slug-2.mdx
ā”‚   ā”‚   ā”‚   ā””ā”€ā”€ ...
ā”‚   ā”‚   ā””-- config.ts
ā”‚   ā”œā”€ā”€ 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.mjs
ā””ā”€ā”€ ...

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.

Commands

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

CommandAction
npm installInstalls dependencies
npm run devStarts local dev server at localhost:3000
npm run buildBuild your production site to ./dist/
npm run previewPreview your build locally, before deploying
npm run formatFormat codes with Prettier
npm run lint:eslintRun Eslint
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.jpg'
        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
    postsPerPage: 6

    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

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

ui:
  theme: 'system' # Values: "system" | "light" | "dark" | "light:only" | "dark:only"
  • TailNext
    • Free template using Next.js 13 and Tailwind CSS with the new App Router.
  • Qwind
    • Free template to make your website using Qwik + Tailwind CSS.

Contributing

If you have any idea, 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 onWidget and maintained by a community of contributors.

License

AstroWind is licensed under the MIT license ā€” see the LICENSE file for details.


Template Content

Deploy Now

Details

Created on Sep 12, 2023

84 total projects

26 active projects

83% success on recent deploys

Astro, TypeScript, MDX, JavaScript, CSS, HTML

Starters



More templates in this category

View Template
TanStack + React Starter

TanStack + React Starter

A barebones TypeScript React starter with TanStack Router & Query setup


Kyle Gill

View Template
Laravel

Laravel

An example Laravel application


Alexandru Vlad

View Template
Flask

Flask

A minimal Flask web application.


alphasec