gabrielsimmer.com/dhall/web-copy.dhall
Gabriel Simmer 0bfcbeebfb
All checks were successful
Fly Deploy / Deploy app (push) Successful in 1m43s
Working out dhall configuration
2023-07-21 23:15:14 +01:00

27 lines
593 B
Plaintext

let types = ./types.dhall
let Url = types.Url
let subtexts : List Text =
[ "Infrastructure with Love"
, "My fourth Kubernetes cluster"
, "Overengineer my personal site?"
, "Mythical full stack engineer"
]
let about : Text = ''
Working as a Senior Platform Engineer in food delivery and logistics. Currently living in the United Kingdom. Working on some cool things for Furality. Playing around with various things in my free time.
''
let links : List Url =
[ { display_text = "Fediverse"
, link = "https://floofy.tech/@arch"
}
]
in
{ about
, subtexts
, links
}