Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/marutpun/personal-web

My personal website
https://github.com/marutpun/personal-web

astro formspree tailwindcss

Last synced: 3 days ago
JSON representation

My personal website

Awesome Lists containing this project

README

        

# My personal website

My website is on https://marutp.netlify.app

## Tech

- Astro
- TailwindCSS
- Formspree
- JS-Cookie
- Undraw SVG
- Shadcn UI
- Visual Studio Code

## Assets

Color `#833ab4`, `#fd1d1d`, and `#fcb045` from Docusaurus Theme

---

Made with love in Bangkok. (sometimes I coded in Dublin)
Last updated: November 6th, 2024

## What I learn ?
### Shorthand of classList

```
//full
element.classList.add('dark') | .classList.remove('dark');
element.classList[add]('dark') | .classList[remove]('dark');
//
element.classList[isTrue ? 'add' : 'remove']('dark');
```