Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/marutpun/personal-web
- Owner: marutpun
- Created: 2023-04-14T14:37:54.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-11-06T08:20:44.000Z (9 days ago)
- Last Synced: 2024-11-06T08:34:12.494Z (9 days ago)
- Topics: astro, formspree, tailwindcss
- Language: Astro
- Homepage: https://marutp.netlify.app
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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');
```