feat: initial commit

This commit is contained in:
Iain Learmonth 2025-05-21 11:43:04 +01:00
commit fa972fd074
27 changed files with 19326 additions and 0 deletions

13
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,13 @@
image: node:22
pages:
stage: deploy
script:
- npm install
- npm run build
- mv build public
artifacts:
paths:
- public
only:
- main