A modern website for Robrix, a Rust Matrix client built atop Project Robius. This website showcases the project features, platform support, and conference presentations.
- Hero Section: Project overview with download and source code links
- Features Grid: Technical capabilities and platform support
- Technology Stack: Rust, Project Robius, and Makepad UI information
- Conference Recognition: Presentations at GOSIM conferences and Matrix Live
- Platform Support: Desktop and mobile availability
- Professional Navigation: Project, Development, and Community links
-
Astro 5.12 - Static site generator
-
Tailwind CSS - Utility-first CSS framework
-
TypeScript - Type-safe development
-
Astro Icons - Icon system with Tabler icons
-
Responsive Design - Mobile-first approach
-
✅ 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.
Table of Contents
📌 https://astrowind.vercel.app/
We're embarking on an exciting journey with AstroWind 2.0, and we want you to be a part of it! We're currently taking the first steps in developing this new version and your insights are invaluable. Join the discussion and share your feedback, ideas, and suggestions to help shape the future of AstroWind. Let's make AstroWind 2.0 even better, together!
Share Your Feedback in Our Discussion!
npm create astro@latest -- --template arthelokyo/astrowindAstroWind tries to give you quick access to creating a website using Astro 5.0 + Tailwind CSS. 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.
In this version the template supports all the options in the output configuration, static, hybrid and server, but the blog only works with prerender = true. We are working on the next version and aim to make it fully compatible with SSR.
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.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 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"To customize Font families, Colors or more Elements refer to the following files:
src/components/CustomStyles.astrosrc/assets/styles/tailwind.css
You can create an optimized production build with:
npm run buildNow, 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:
- Why?
- TailNext - Free template using Next.js 14 and Tailwind CSS with the new App Router.
- Qwind - Free template to make your website using Qwik + Tailwind CSS.
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.
This site is configured for automatic deployment to GitHub Pages via GitHub Actions.
-
Update Configuration:
- Edit
src/config.yamland replace[YOUR-USERNAME]with your actual GitHub username - Edit
astro.config.tsand replace[YOUR-USERNAME]with your actual GitHub username
- Edit
-
Enable GitHub Pages:
- Go to your repository settings on GitHub
- Navigate to Settings → Pages
- Set Source to "GitHub Actions"
-
Push to Main Branch:
git add . git commit -m "Configure for GitHub Pages deployment" git push origin main
-
View Deployment:
- Actions tab will show the deployment progress
- Once complete, your site will be available at:
https://[YOUR-USERNAME].github.io/vibecoding/
If you prefer manual deployment:
# Build the site
npm run build
# Deploy the dist/ folder to GitHub Pages
ghp-import -n dist -b gh-pages
git push origin gh-pagessrc/
├── assets/ # Static assets (images, styles)
├── components/ # Reusable components
│ ├── widgets/ # Page sections and features
│ └── ui/ # UI components
├── layouts/ # Page layout templates
├── pages/ # Route definitions
├── config.yaml # Site configuration
├── navigation.ts # Navigation structure
└── utils/ # Helper functions
- Edit
tailwind.config.mjsfor theme customization - Modify CSS variables in layouts for branding
- Update
src/config.yamlfor site metadata - Edit page content in
src/pages/ - Modify navigation structure in
src/navigation.ts
- Add images to
src/assets/images/ - Reference with
~/assets/images/filename.jpg
This project follows the same licensing as the Robrix project. Please refer to the main Robrix repository for license information.
- Robrix Project: https://github.com/project-robius/robrix
- Project Robius: https://github.com/project-robius
- Matrix Chat: https://matrix.to/#/#robius-robrix:matrix.org
- Makepad UI: https://github.com/makepad/makepad
