Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/unify-ui-dev/agency-landing-page-Astrojs
A simple agency landing page made with astrojs and tailwindcss
https://github.com/unify-ui-dev/agency-landing-page-Astrojs
agency-theme astrojs landing-page tailwindcss
Last synced: 15 days ago
JSON representation
A simple agency landing page made with astrojs and tailwindcss
- Host: GitHub
- URL: https://github.com/unify-ui-dev/agency-landing-page-Astrojs
- Owner: unify-ui-dev
- License: mit
- Created: 2023-04-05T22:16:11.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-04T10:03:17.000Z (4 months ago)
- Last Synced: 2024-08-01T16:32:40.847Z (3 months ago)
- Topics: agency-theme, astrojs, landing-page, tailwindcss
- Language: Astro
- Homepage: https://agencex-astro.vercel.app
- Size: 1.15 MB
- Stars: 192
- Watchers: 5
- Forks: 109
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
AgenceX Landing page
A simple landing page for a digital agency
![AgenceX light Theme](./screens/demoLight.webp)
![AgenceX Dark Theme](./screens/demoDark.webp)## Tools
- TailwindCSS v3.3
- AstroJs v3## 🚀 Project Structure
Inside of your Astro project, you'll see the following folders and files:
```
/
├── public/
│ ├── images/
│ ├── logos/*
│ └── favicon.svg
├── src/
│ ├── components/
│ │ ├── blocks/*
│ │ ├── cards/*
│ │ ├── elements/*
│ │ ├── sections/*
│ │ ├── shared/*
│ ├── layouts/
│ │ └── Layout.astro
│ └── pages/
│ └── index.astro
├── package.json
└── tailwind.config.cjs
```## 🧞 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:4321` |
| `npm run build` | Build your production site to `./dist/` |
| `npm run preview` | Preview your build locally, before deploying |
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
| `npm run astro --help` | Get help using the Astro CLI |