├── .gitignore
├── .npmrc
├── .prettierignore
├── .vscode
├── extensions.json
└── launch.json
├── LICENCE.md
├── README.md
├── astro.config.mjs
├── package-lock.json
├── package.json
├── prettier.config.cjs
├── public
├── cover.webp
├── darkfavicon.svg
├── favicon.svg
├── og.png
└── product-screenshot.webp
├── src
├── components
│ ├── AboutSection.astro
│ ├── AppFooter.astro
│ ├── AppHeader.astro
│ ├── BaseHead.astro
│ ├── BentoGrid.astro
│ ├── Blog.astro
│ ├── BrandIcon.astro
│ ├── BrandLogo.astro
│ ├── CallToAction.astro
│ ├── Container.astro
│ ├── Frame.astro
│ ├── HeroSection.astro
│ ├── SpeedSection.astro
│ ├── Stats.astro
│ └── Testimonials.astro
├── consts.ts
├── env.d.ts
├── layouts
│ └── Layout.astro
├── lib
│ └── utils.ts
└── pages
│ └── index.astro
├── tailwind.config.ts
└── tsconfig.json
/.gitignore:
--------------------------------------------------------------------------------
1 | # build output
2 | dist/
3 | .output/
4 |
5 | # dependencies
6 | node_modules/
7 |
8 | # logs
9 | npm-debug.log*
10 | yarn-debug.log*
11 | yarn-error.log*
12 | pnpm-debug.log*
13 |
14 |
15 | # environment variables
16 | .env
17 | .env.production
18 |
19 | # macOS-specific files
20 | .DS_Store
21 |
--------------------------------------------------------------------------------
/.npmrc:
--------------------------------------------------------------------------------
1 | # Expose Astro dependencies for `pnpm` users
2 | shamefully-hoist=true
3 |
--------------------------------------------------------------------------------
/.prettierignore:
--------------------------------------------------------------------------------
1 | **/*.mdx
2 | **/generated/
3 | src/samples/
4 | **/snippet.*
5 | /dist
6 | /node_modules
7 | /public
--------------------------------------------------------------------------------
/.vscode/extensions.json:
--------------------------------------------------------------------------------
1 | {
2 | "recommendations": ["astro-build.astro-vscode"],
3 | "unwantedRecommendations": []
4 | }
5 |
--------------------------------------------------------------------------------
/.vscode/launch.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": "0.2.0",
3 | "configurations": [
4 | {
5 | "command": "./node_modules/.bin/astro dev",
6 | "name": "Development server",
7 | "request": "launch",
8 | "type": "node-terminal"
9 | }
10 | ]
11 | }
12 |
--------------------------------------------------------------------------------
/LICENCE.md:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2024 Tailus
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Atom
2 |
3 | Modern free Tailwind CSS, Astro landing page template for startups | built with Tailus Themer
4 |
5 | 
6 |
7 | ## 🚀 Project Structure
8 |
9 | Inside of your Astro project, you'll see the following folders and files:
10 |
11 | ```
12 | /
13 | ├── public/
14 | │ └── favicon.svg
15 | ├── src/
16 | │ ├── components/
17 | │ │ └── Card.astro
18 | │ ├── layouts/
19 | │ │ └── Layout.astro
20 | │ └── pages/
21 | │ └── index.astro
22 | └── package.json
23 | ```
24 |
25 | Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
26 |
27 | There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
28 |
29 | Any static assets, like images, can be placed in the `public/` directory.
30 |
31 | ## 🧞 Commands
32 |
33 | All commands are run from the root of the project, from a terminal:
34 |
35 | | Command | Action |
36 | | :--------------------- | :------------------------------------------------- |
37 | | `npm install` | Installs dependencies |
38 | | `npm run dev` | Starts local dev server at `localhost:3000` |
39 | | `npm run build` | Build your production site to `./dist/` |
40 | | `npm run preview` | Preview your build locally, before deploying |
41 | | `npm run astro ...` | Run CLI commands like `astro add`, `astro preview` |
42 | | `npm run astro --help` | Get help using the Astro CLI |
43 |
44 | ## 👀 Want to learn more?
45 |
46 | Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).
47 |
--------------------------------------------------------------------------------
/astro.config.mjs:
--------------------------------------------------------------------------------
1 | import { defineConfig } from 'astro/config';
2 |
3 | import tailwind from "@astrojs/tailwind";
4 |
5 | // https://astro.build/config
6 | export default defineConfig({
7 | integrations: [tailwind()],
8 | site: 'https://atom.tailus.io'
9 | });
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "atom",
3 | "description": "Modern free Tailwind CSS, Astro landing page template for startups | built with Tailus Themer",
4 | "version": "0.0.2",
5 | "private": false,
6 | "type": "module",
7 | "scripts": {
8 | "dev": "astro dev",
9 | "start": "astro dev",
10 | "build": "astro build",
11 | "preview": "astro preview",
12 | "astro": "astro"
13 | },
14 | "dependencies": {
15 | "@tailus/themer": "^0.0.5",
16 | "@tailus/themer-button": "^0.0.7",
17 | "@tailus/themer-card": "^0.0.1",
18 | "@tailus/themer-progress": "^0.0.1",
19 | "astro": "^4.5.12",
20 | "astro-font": "^0.0.72",
21 | "clsx": "^2.1.0",
22 | "tailwind-merge": "^2.2.2",
23 | "tailwindcss": "^3.4.3"
24 | },
25 | "devDependencies": {
26 | "@astrojs/tailwind": "^5.1.0"
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/prettier.config.cjs:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | printWidth: 1000,
3 | tabWidth: 4,
4 |
5 | plugins: [require("prettier-plugin-tailwindcss")],
6 | tailwindConfig: "./tailwind.config.cjs",
7 | };
8 |
--------------------------------------------------------------------------------
/public/cover.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tailus-UI/atom-astro/764b5c885054f68f173608ac483208a0de85f917/public/cover.webp
--------------------------------------------------------------------------------
/public/darkfavicon.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/public/favicon.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/og.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tailus-UI/atom-astro/764b5c885054f68f173608ac483208a0de85f917/public/og.png
--------------------------------------------------------------------------------
/public/product-screenshot.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Tailus-UI/atom-astro/764b5c885054f68f173608ac483208a0de85f917/public/product-screenshot.webp
--------------------------------------------------------------------------------
/src/components/AboutSection.astro:
--------------------------------------------------------------------------------
1 | ---
2 | import Container from "./Container.astro";
3 | ---
4 |
5 | Natus ad ipsum pariatur autem, fugit laborum in atque amet obcaecati? Nisi minima aspernatur, quidem nulla cupiditate nam consequatur eligendi magni adipisci. Nisi minima aspernatur, quidem nulla cupiditate nam consequatur eligendi magni adipisci.
10 |
A technology-first approach to payments and finance
15 |
Quam quasi impedit voluptatum a reiciendis tempora atque aspernatur voluptatibus nostru.
33 |Quam quasi impedit voluptatum a reiciendis tempora atque aspernatur voluptatibus nostru.
65 |Quam quasi impedit voluptatum a reiciendis tempora atque aspernatur voluptatibus nostru.
95 |Quam quasi impedit voluptatum a reiciendis tempora atque aspernatur voluptatibus nostru.
130 |Supported by a network of early advocates, contributors, and champions.
172 |11 | Quam hic dolore cumque voluptate rerum beatae et quae, tempore sunt, debitis dolorum officia 12 | aliquid explicabo? Excepturi, voluptate? 13 |
14 |26 | Voluptates harum aliquam totam, doloribus eum impedit atque! Temporibus... 27 |
28 | 29 | Read more 30 | 31 |44 | Voluptates harum aliquam totam, doloribus eum impedit atque! Temporibus... 45 |
46 | 47 | Read more 48 | 49 |62 | Voluptates harum aliquam totam, doloribus eum impedit atque! Temporibus... 63 |
64 | 65 | Read more 66 | 67 |18 | Be part of millions people around the world using tailus in modern UIS. 19 |
20 |Odio incidunt nam itaque sed eius modi error totam sit illum. Voluptas doloribus asperiores quaerat aperiam. Quidem harum omnis beatae ipsum soluta!
18 |Some text here
30 |Some text here
35 |Some text here
40 |Harum quae dolore orrupti aut temporibus ariatur.
12 |Natus ad ipsum pariatur autem, fugit laborum in atque amet obcaecati? Nisi minima aspernatur, quidem nulla cupiditate nam consequatur eligendi magni adipisci.
61 |Nisi minima aspernatur, quidem nulla cupiditate nam consequatur eligendi magni adipisci.
62 |Natus ad ipsum pariatur autem, fugit laborum in atque amet obcaecati? Nisi minima aspernatur, quidem nulla cupiditate nam consequatur eligendi magni adipisci.
25 |Nisi minima aspernatur, quidem nulla cupiditate nam consequatur eligendi magni adipisci.
26 |Harum quae dolore orrupti aut temporibus ariatur.
12 |24 |28 |25 | Tailus is really extraordinary and very practical, no need to break your head. A real gold mine. 26 |
27 |
41 |45 |42 | With no experience in webdesign I just redesigned my entire website in a few minutes with tailwindcss thanks to Tailus. 43 |
44 |
58 |62 |59 | Great work on tailfolio template. This is one of the best personal website that I have seen so far :) 60 |
61 |
75 |79 |76 | I am really new to Tailwind and I want to give a go to make some page on my own. I searched a lot of hero pages and blocks online. However, most of them are not giving me a clear view or needed some HTML/CSS coding background to make some changes from the original or too expensive to have. I downloaded the one of Tailus template which is very clear to understand at the start and you could modify the codes/blocks to fit perfectly on your purpose of the page. 77 |
78 |
94 |98 |95 | Tailus is redefining the standard of web design, with these blocks it provides an easy and efficient way for those who love beauty but may lack the time to implement it. I can only recommend this incredible wonder. 96 |
97 |
112 |116 |113 | I absolutely love Tailus! The component blocks are beautifully designed and easy to use, which makes creating a great-looking website a breeze. 114 |
115 |
130 |134 |131 | Using TailsUI has been like unlocking a secret design superpower. It's the perfect fusion of simplicity and versatility, enabling us to create UIs that are as stunning as they are user-friendly. 132 |
133 |
147 |151 |148 | Tailus has transformed the way I develop web applications. Their extensive collection of UI components, blocks, and templates has significantly accelerated my workflow. The flexibility to customize every aspect allows me to create unique user experiences. Tailus is a game-changer for modern web development! 149 |
150 |
165 |169 |166 | Tailus is an elegant, clean, and responsive tailwind css components it's very helpfull to start fast with your project. 167 |
168 |
181 |185 |182 | I love Tailus ❤️. The component blocks are well-structured, simple to use, and beautifully designed. It makes it really easy to have a good-looking website in no time. 183 |
184 |
197 |201 |198 | Tailus templates are the perfect solution for anyone who wants to create a beautiful and functional website without any web design experience. The templates are easy to use, customizable, and responsive, and the support team is always available to help. I highly recommend Tailus templates to anyone who is looking to create a website. 199 |
200 |
213 |217 |214 | Tailus is so well designed that even with a very poor knowledge of web design you can do miracles. Let yourself be seduced! 215 |
216 |