add routing

 add bulma
 add favicon
 add justfile
🔥 rm navbar
This commit is contained in:
lunarydess
2025-03-10 14:45:13 +01:00
parent 9a9be89650
commit c7b262cd49
12 changed files with 226 additions and 39 deletions

View File

@@ -0,0 +1,11 @@
#version 300 es
layout(location = 0) in vec3 position;
layout(location = 1) in vec4 color;
uniform mat4 model;
out vec4 vColor;
void main(void) {
vColor = color;
gl_Position = model * vec4(position, 1.0);
}