GithubHelp home page GithubHelp logo

virgos_december's Introduction

๐Ÿš€ AstroWind

AstroWind Lighthouse Score

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

Features

  • โœ… Integration with Tailwind CSS (@astrojs/tailwind) supporting Dark mode.
  • โœ… Production-ready scores in Lighthouse and PageSpeed Insights reports.
  • โœ… Fast and SEO friendly blog with automatic RSS feed (@astrojs/rss), MDX support, Categories & Tags, Social Share buttons, ...
  • โœ… Image optimization (@astrojs/images) and Font optimization.
  • โœ… Generation of project sitemap based on your routes (@astrojs/sitemap).
  • โœ… Open Graph tags for social media sharing.
  • โœ… Analytics built-in Google Analytics, and Splitbee integration.

AstroWind Theme Screenshot

onWidget License Maintained Contributions Welcome Known Vulnerabilities Stars Forks


Table of Contents

Demo

๐Ÿ“Œ https://astrowind.vercel.app/


Getting started

AstroWind tries to give you quick access to creating a website using Astro + 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:

/
โ”œโ”€โ”€ data/
|   โ””โ”€โ”€ blog/
|       โ”œโ”€โ”€ post-slug-1.md
|       โ”œโ”€โ”€ post-slug-2.mdx
|       โ””โ”€โ”€ ...
โ”œโ”€โ”€ public/
โ”‚   โ”œโ”€โ”€ robots.txt
โ”‚   โ””โ”€โ”€ favicon.ico
โ”œโ”€โ”€ src/
โ”‚   โ”œโ”€โ”€ assets/
โ”‚   โ”‚   โ”œโ”€โ”€ images/
|   |   โ””โ”€โ”€ styles/
|   |       โ””โ”€โ”€ base.css
โ”‚   โ”œโ”€โ”€ components/
โ”‚   โ”‚   โ”œโ”€โ”€ atoms/
โ”‚   โ”‚   โ”œโ”€โ”€ blog/
โ”‚   โ”‚   โ”œโ”€โ”€ core/
|   |   โ””โ”€โ”€ widgets/
|   |       โ”œโ”€โ”€ Header.astro
|   |       โ”œโ”€โ”€ Footer.astro
|   |       โ””โ”€โ”€ ...
โ”‚   โ”œโ”€โ”€ layouts/
โ”‚   |   |โ”€โ”€ BaseLayout.astro
โ”‚   |   โ””โ”€โ”€ ...
โ”‚   โ”œโ”€โ”€ pages/
โ”‚   |   โ”œโ”€โ”€ [...blog]/
|   |   |   โ”œโ”€โ”€ [...page].astro
|   |   |   โ””โ”€โ”€ [slug].astro
โ”‚   |   โ”œโ”€โ”€ [...categories]/
|   |   |   โ””โ”€โ”€ [category]/
|   |   |       โ””โ”€โ”€ [...page].astro
โ”‚   |   โ”œโ”€โ”€ [...tags]/
|   |   |   โ””โ”€โ”€ [tag]/
|   |   |       โ””โ”€โ”€ [...page].astro
โ”‚   |   โ”œโ”€โ”€ index.astro
|   |   โ”œโ”€โ”€ 404.astro
|   |   โ””-- rss.xml.js
โ”‚   โ”œโ”€โ”€ utils/
โ”‚   โ””โ”€โ”€ config.mjs
โ”œโ”€โ”€ package.json
โ””โ”€โ”€ ...

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

๐Ÿง‘โ€๐Ÿš€ Seasoned astronaut? Delete this file. Update config.mjs 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:3000
npm run build Build your production site to ./dist/
npm run preview Preview your build locally, before deploying
npm run format Format codes with Prettier
npm run lint:eslint Run Eslint
npm run astro ... Run CLI commands like astro add, astro preview

Configuration

Basic configuration file: ./src/config.mjs

export const SITE = {
  name: 'Example',

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

  title: 'Example - This is the homepage title of Example',
  description: 'This is the homepage description of Example',

  googleAnalyticsId: false, // or "G-XXXXXXXXXX",
  googleSiteVerificationId: false, // or some value,
};

export const BLOG = {
  disabled: false,
  postsPerPage: 4,

  blog: {
    disabled: false,
    pathname: 'blog', // blog main path, you can change this to "articles" (/articles)
  },

  post: {
    disabled: false,
    pathname: '', // empty for /some-post, value for /pathname/some-post
  },

  category: {
    disabled: false,
    pathname: 'category', // set empty to change from /category/some-category to /some-category
  },

  tag: {
    disabled: false,
    pathname: 'tag', // set empty to change from /tag/some-tag to /some-tag
  },
};

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 own GitHub account and deploy to Netlify:

Netlify Deploy button

Deploy to Vercel

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

Deploy with Vercel


Roadmap

Base

  • Improve blog design (More generic design that adapts to more needs).
  • Create component or utilities for related posts.
  • Add more shortcodes or embed functions to posts in Markdown: (eg Video, Tweet...).
  • Add more Tailwind components useful for most scenarios (Features, Contact, Call to Actions, Content, FAQs...)
  • Add commonly used example pages (Ex: About, Terms, Profile, Services...).
  • Create detailed documentation with best practices and redesign tips.

Advanced

  • Create external library or place with useful Tailwind components.
  • Create examples of AstroWind in CodeSanbox or a similar platform that can be easily synchronized with new updates. (Redesign, Integration with React or Svelte components, Use of Tailwind plugins, Connection to headless CMS ...).

Frequently Asked Questions

  • Why?

Related projects

  • Qwind - A 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 Unlicense license โ€” see the LICENSE file for details.

virgos_december's People

Contributors

kthrob avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.