A modern, blazing-fast landing page for Yet Another M* Project – a GTA V multiplayer platform.
- Vue 3 + Vite (SFCs with
<script setup>
) - TypeScript
- Tailwind CSS 4
- Lucide Icons
- Bun for dependency management & scripts
-
Install Bun, because we're not animals
curl -fsSL https://bun.sh/install | bash
-
Clone & install dependencies:
git clone https://github.com/yamp-project/yetanother.mp cd yetanother.mp bun install
-
Start the dev server (Hot Module Reload enabled):
bun run dev
The site is now available at
http://localhost:5173
(or the next free port).
bun run build
The static assets are output to dist/
. Serve them with any static HTTP server or your hosting of choice.
bun run preview
src/components
– Reusable UI componentssrc/pages
– Route-level page componentssrc/router
– Vue-Router configurationsrc/assets
– Static assets (images, SVGs, etc.)
Pull requests are welcome!
- Fork the repo and create your branch:
git checkout -b feat/your-feature
. - Install deps & make sure the dev server runs.
- Follow conventional commit messages.
- Ensure
bun run build
completes without warnings. - Open a pull request.
MIT