update settings nav

This commit is contained in:
Eduard Gert
2026-05-07 12:40:04 +02:00
parent a2be41caf8
commit 062a183e4e
13 changed files with 686 additions and 132 deletions

View File

@@ -1,11 +1,13 @@
import { Outlet } from "react-router-dom";
import { Header } from "@/layouts/Header.tsx";
import { AutoUpdate } from "@/modules/auto-update/AutoUpdate.tsx";
export const AppLayout = () => {
return (
<div className={"flex h-full flex-col"}>
<div className={"relative flex h-full flex-col"}>
<Header />
<Outlet />
<AutoUpdate />
</div>
);
};