feat: Site pages get listed.

This commit is contained in:
Spencer Brower
2026-07-10 17:13:26 -04:00
parent 454f90f5cb
commit 54bc4ee322
4 changed files with 298 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
package main
Site :: struct {
base_url: string,
title: string,
socials: []Social_Icon,
}
Social_Icon :: struct {
name: string,
url: string,
}