use Momo Trust Sans

This commit is contained in:
Henry Hiles 2025-11-07 11:21:20 -05:00
commit d0d00a4cc8
No known key found for this signature in database

View file

@ -8,7 +8,7 @@ import "package:shelf_router/shelf_router.dart";
void main(List<String> argsRaw) async {
final container = ProviderContainer();
final isDebug = false;
final isDebug = await File("./README.md").exists();
final handler = const Pipeline()
.addMiddleware(logRequests())
@ -30,11 +30,12 @@ void main(List<String> argsRaw) async {
}, 1000)
</script>
<style>
body {
@import url('https://fonts.googleapis.com/css2?family=Momo+Trust+Sans:wght@800');
body {
background-color: black;
font-size: 25vw;
color: white;
font-family: "Inter";
font-family: "Momo Trust Sans", sans-serif;
text-align: right;
}
</style>