feat: nds render system

This commit is contained in:
2025-11-09 16:20:30 +01:00
parent ed8e35b1d7
commit 46debb815d
31 changed files with 6017 additions and 2898 deletions

View File

@@ -1,39 +1,75 @@
<h1 align="center">
<br>
<img src="https://i.imgur.com/8xRqYCS.png" alt="Pihkaal Profile Picture" width="200">
<br>
pihkaal.me
<br>
</h1>
# Nuxt Minimal Starter
<h4 align="center">My <a href="https://pihkaal.me">personnal website</a>.</h4>
Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
<p align="center">
<a href="https://vitejs.dev">
<img src="https://img.shields.io/badge/vite-906dfe?style=for-the-badge&logo=vite&logoColor=white">
</a>
<a href="https://typescriptlang.org">
<img src="https://img.shields.io/badge/TypeScript-007acc?style=for-the-badge&logo=typescript&logoColor=white">
</a>
<a href="https://react.dev">
<img src="https://img.shields.io/badge/react-017fa5?style=for-the-badge&logo=react&logoColor=white">
</a>
</p>
## Setup
<p align="center" id="links">
<a href="#description">Description</a> •
<a href="https://pihkaal.me">Visit it</a> •
<a href="#license">License</a>
</p>
Make sure to install dependencies:
<br>
```bash
# npm
npm install
## Description
# pnpm
pnpm install
This is my personnal website, built with Vite, React and TypeScript. It's the recreation of my desktop, with [neovim](https://neovim.io/), [spotify-player](https://github.com/aome510/spotify-player) (that is synchronized with my spotify activity), and [cava](https://github.com/karlstav/cava).
# yarn
yarn install
<br>
# bun
bun install
```
## License
## Development Server
This project is <a href="https://opensource.org/licenses/MIT">MIT</a> licensed.
Start the development server on `http://localhost:3000`:
```bash
# npm
npm run dev
# pnpm
pnpm dev
# yarn
yarn dev
# bun
bun run dev
```
## Production
Build the application for production:
```bash
# npm
npm run build
# pnpm
pnpm build
# yarn
yarn build
# bun
bun run build
```
Locally preview production build:
```bash
# npm
npm run preview
# pnpm
pnpm preview
# yarn
yarn preview
# bun
bun run preview
```
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.