feat: add control center widget

This commit is contained in:
tux
2025-09-25 19:29:18 +05:30
parent 96431e101a
commit bd8cd294ee
10 changed files with 217 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
import { Gtk } from "ags/gtk4";
export const Footer = () => {
const { END } = Gtk.Align;
return (
<box valign={END} cssClasses={["footer"]}>
<label hexpand label="NOBODY FUX WITH TUX" />
</box>
);
};