From ee02dcc859b169828a1e68d25c3539d9d466deba Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Mon, 10 Feb 2025 22:35:31 +0100 Subject: [PATCH] fix page title and url --- build.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.zig b/build.zig index 5c283d8..80a9ec7 100644 --- a/build.zig +++ b/build.zig @@ -3,8 +3,8 @@ const zine = @import("zine"); pub fn build(b: *std.Build) !void { _ = zine.website(b, .{ - .title = "Flow Editor", - .host_url = "https://flow-editor.dev", + .title = "Flow Control: a progammer's text editor", + .host_url = "https://flow-control.dev", .content_dir_path = "content", .layouts_dir_path = "layouts", .assets_dir_path = "assets",