add cycles and some cruft

This commit is contained in:
graphiteisaac 2025-07-25 19:49:42 +10:00
parent 73981cf627
commit 3a272c223c
3 changed files with 50 additions and 0 deletions

View file

@ -9,6 +9,7 @@
},
"scripts": {
"build": "gleam run build",
"dev": "vite",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],

37
priv/posts/cycles.md Normal file
View file

@ -0,0 +1,37 @@
---
title: Cycles
week: 23
date: 2025-06-11
---
a well deserved break,\
then becomes holiday\
prepare to go back,\
did we ever get away?
it's a new group to learn,\
a space to decorate\
we all settle in,\
here to face the same fate
they grow and they learn,\
progress feels steady\
reports come and go,\
they'll never feel ready
a long sluggish term,\
the weeks never end\
events, celebrations,\
exhaustion, a new friend
the end is in sight,\
fear and joy seep in\
shut down our brains,\
till the new year's begin
+++
It turns a circle round\
To spin a web of lies\
A trick known by those wise
It's hand shown not as dealt\
A fibs betrayal felt\
Signed with delayed sound

12
vite.config.ts Normal file
View file

@ -0,0 +1,12 @@
import { defineConfig } from "vite";
import gleam from "vite-gleam";
import tailwindcss from "@tailwindcss/vite";
export async function run_vite_server() {}
export default defineConfig({
server: {
port: 1337,
},
plugins: [gleam(), tailwindcss()],
});