Add settings page for alert preferences

This commit is contained in:
zv
2026-06-11 18:39:01 +02:00
parent 68fd967f88
commit 531e678922
9 changed files with 344 additions and 10 deletions

8
app/settings/page.tsx Normal file
View File

@@ -0,0 +1,8 @@
import type { Metadata } from "next";
import { SettingsPage } from "@/components/settings/settings-page";
export const metadata: Metadata = { title: "Ustawienia / Settings" };
export default function Page() {
return <SettingsPage />;
}