https://github.com/unoforge/agency-landing-page-astrojs
A simple agency landing page made with astrojs and tailwindcss
https://github.com/unoforge/agency-landing-page-astrojs
agency-theme astro astrojs astrojs-v5 landing-page tailwindcss
Last synced: 11 days ago
JSON representation
A simple agency landing page made with astrojs and tailwindcss
- Host: GitHub
- URL: https://github.com/unoforge/agency-landing-page-astrojs
- Owner: unoforge
- License: mit
- Created: 2023-04-05T22:16:11.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-04T07:34:01.000Z (about 2 months ago)
- Last Synced: 2025-04-06T07:05:51.324Z (18 days ago)
- Topics: agency-theme, astro, astrojs, astrojs-v5, landing-page, tailwindcss
- Language: Astro
- Homepage: https://agencex-astro.vercel.app
- Size: 1010 KB
- Stars: 240
- Watchers: 6
- Forks: 138
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
AgenceX Landing page
A simple landing page for a digital agency

## Tools
- TailwindCSS v3
- AstroJs v5## 🚀 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 |