Commit Graph

21 Commits

Author SHA1 Message Date
eb2be69957 refactor: use if condition on layout 2023-06-11 22:40:13 +02:00
3b8d499171 feat: create Toast component 2023-06-11 22:39:37 +02:00
738a7728c0 refactor: rename --switcher-offet CSS variable to --offset-sides 2023-06-11 22:39:23 +02:00
09b1af7e2e fix: side padding on xsmall Button size 2023-06-11 22:38:49 +02:00
9c329b5ff7 refactor: update Button to always use a size, determine tag from url 2023-06-11 21:40:41 +02:00
1360b095be refactor: use classic for conditional classes 2023-06-11 20:23:18 +02:00
4dce8354f7 refactor: separate CSS variables into file 2023-06-11 19:46:55 +02:00
219794641f fix: change Lenis easing function 2023-05-26 23:49:59 +02:00
d991dad294 refactor: use global page transition in main layout 2023-05-26 23:49:23 +02:00
685d4fd244 refactor: get rid of page data types 2023-05-26 23:48:01 +02:00
faec58467e fix: change Lenis parameters from newer versions 2023-03-28 23:18:43 +02:00
d4f0a7431c fix: make Globe light position accurate
Takes UTC current time with timezone difference, based on noon
I guess thanks again ChatGPT + StackOverflow?
2023-02-15 19:11:37 +01:00
51090bb4d9 refactor: use global setting for Vercel Edge runtime 2023-02-15 12:20:58 +01:00
ed16fb9765 feat: run server functions on edge 2023-02-10 18:50:02 +01:00
3727b6bb2b chore: move utils to package 2023-02-10 17:52:50 +01:00
0c829c88c5 fix: eslint errors 2023-02-10 17:28:54 +01:00
7efc1842bd feat: set correct sun angle from current time
Thanks ChatGPT for that one!!

How to find the current sun angle from Earth's rotation in javascript?
A hint: Where is the sun shining on the earth at the time I visit the site? I guess the time zone that's closest to noon.

the dayTime variable needs to be from 0 to 1

const d = degToRad(360 / dayTime)
const sunPos = new Vec3(
    Math.cos(d),
    Math.sin(d) * Math.sin(0),
    Math.sin(d) * Math.cos(0)
)
2023-02-10 15:35:36 +01:00
b76f70a05f Fix eslint error and update svelte related stuff 2023-01-22 21:39:10 +01:00
1143651549 [chore] Update packages and config 2023-01-14 12:35:45 +01:00
47ea21569d [chore] Use satisfies syntax for server routes types 2023-01-10 13:02:19 +01:00
25bb949a13 🚧 Switch to monorepo with Turbo 2023-01-10 12:53:42 +01:00