Initial commit

This commit is contained in:
Igor Támara 2024-11-09 00:48:42 -05:00
commit 17db0285a0
15 changed files with 788 additions and 0 deletions

15
build.zig Normal file
View file

@ -0,0 +1,15 @@
const std = @import("std");
const zine = @import("zine");
pub fn build(b: *std.Build) !void {
zine.website(b, .{
.title = "Flow Editor",
.host_url = "https://flow-editor.github.io",
.content_dir_path = "content",
.layouts_dir_path = "layouts",
.assets_dir_path = "assets",
.static_assets = &.{
"video/flow-control.mp4",
},
});
}