diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-07-30 07:46:37 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-07-30 07:46:37 +0200 |
| commit | c8744f9f6a28a23b83603435a3ad987f0d9f181b (patch) | |
| tree | e0257c54661e9f34b6d2ce8658346f36aa0ff9e3 /src/web/component/navigation/root.zig | |
| parent | d1776161dcc57b600ce7b18c5e7179757491fbc2 (diff) | |
temporal commit
Diffstat (limited to 'src/web/component/navigation/root.zig')
| -rw-r--r-- | src/web/component/navigation/root.zig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/web/component/navigation/root.zig b/src/web/component/navigation/root.zig new file mode 100644 index 0000000..919cddb --- /dev/null +++ b/src/web/component/navigation/root.zig @@ -0,0 +1,8 @@ +const z = @import("z"); + +pub const component: z.Component = .{ + .name = .navigation, + .body = @embedFile("index.html"), + .style = @embedFile("index.css"), + .script = @embedFile("index.js"), +}; |