Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/leabs/astro-tailwind-flowbite-template
A base for projects using Astro, Tailwind, and Flowbite UI components
https://github.com/leabs/astro-tailwind-flowbite-template
astro flowbite tailwind tailwindcss
Last synced: about 14 hours ago
JSON representation
A base for projects using Astro, Tailwind, and Flowbite UI components
- Host: GitHub
- URL: https://github.com/leabs/astro-tailwind-flowbite-template
- Owner: leabs
- Created: 2023-09-12T14:27:58.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-06-27T20:05:56.000Z (4 months ago)
- Last Synced: 2024-08-02T15:03:35.306Z (3 months ago)
- Topics: astro, flowbite, tailwind, tailwindcss
- Language: Astro
- Homepage: https://astro-portfolio-template-leabs.vercel.app
- Size: 12.4 MB
- Stars: 52
- Watchers: 1
- Forks: 26
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Astro Tailwind Flowbite Template
This is a website template that uses the latest version of Astro along with Tailwind and Flowbite UI components to create a static website for various smaller projects. I'm hoping to use this as a foundation for small projects in the future, like building friends' or small businesses' fast and simple static sites.
Walk through video:
[![IMAGE_ALT](https://img.youtube.com/vi/FBFbW2TNRL8/0.jpg)](https://www.youtube.com/watch?v=FBFbW2TNRL8)
This uses all the great features of Astro like View Transitions API support, automatic asset optimization, better build output, and more.
This is a work in progress, so please feel free to send me a pull request for any improvements you make. Look at the contributing section below for more information.
## Getting Started
- Clone or fork this repo.
- Run `npm install` to install all the dependencies.
- Run `npm run dev` to start the dev server.
- You can then view the site at [http://localhost:4321/](http://localhost:4321/).## Changing Site Contents
Most of the site data lives in `src/data/site.json`. You can change the site title, description, social media links, and more there. Make sure to use a JSON linter in case you make any mistakes!
## Adding Pages
Add pages in the `src/pages` directory. Create a new file named `pagename.astro` and import the Layout component and some variables into your new page like so:
```html
---
import Layout from "../layouts/Layout.astro";
import HeaderSmall from "../components/HeaderSmall.astro";const title = "Contact";
const subtitle = "Contact me";
---
CONTENT HERE
```
**Also note:** you'll need to add the page to `src/data/site.json` in the `pages` array for the page to show up in the navigation, but you don't have to if you don't want it in the nav.
## Component Library
I'm using the Flowbite UI component library, which uses Tailwind CSS. You can find components [here](https://flowbite.com/docs/components/accordion/). If you'd like to add components, simply add them to the `src/components` directory and import them into your pages.
## Site Logo
Replace the image in `src/assets/logo.png` with your own logo. If it's not square, you'll need to adjust the `width` and `height` in the `src/components/Nav.astro` file on line 55.
## Site Favicon
Replace the image in `public/favicon.svg` with your own favicon.
## Site Colors
Colors for primary, secondary, and accent are set in the `tailwind.config.cjs` file. You can change them there to whatever you'd like. A Tailwind palette or even a hex or RGB value will work.
## Deployment
The easiest way to deploy a site like this is by using a service like Vercel, Cloudflare, or Netlify. Simply set up a free account on one of them, authorize your GitHub account, and grant access to all or selected repositories. From there, it should be as simple as setting up a new project in the dashboard; these services should handle the rest.
## Contributing
If you'd like to contribute to this project, please feel free to send me a pull request. I'm always looking for ways to improve this template. If it's for a bug fix, please create an issue first so we can discuss it, the same with a feature add. This will give me more understanding when reviewing the PR. I want to keep this project neat and fast, so please make sure to follow the guidelines below.
## Guidelines
- Please use the [Prettier](https://prettier.io/) code formatter to keep the code clean and consistent.
- Please use [Tailwind](https://tailwindcss.com/) classes for styling.
- Please use [Astro](https://astro.build/) components for HTML.
- Please use [Flowbite UI](https://flowbite.com/) components for HTML.
- If you're submitting a custom component (not in the current Flowbite UI library), please prepend `Custom` to the component name, e.g., `src/components/CustomImageScroll.astro`## License
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details