feat: setup database-driven admin user management

This commit is contained in:
2026-06-10 04:25:54 +03:00
parent f542efb324
commit b712760825
23 changed files with 804 additions and 40 deletions
+16
View File
@@ -0,0 +1,16 @@
import type { MetadataRoute } from "next";
export default function manifest(): MetadataRoute.Manifest {
return {
name: "Kite Beach Akyaka",
short_name: "Kite Beach",
description: "Nehrin huzuru, denizin enerjisi — tek bir noktada.",
start_url: "/tr",
display: "standalone",
background_color: "#0E1A24",
theme_color: "#0D3D50",
icons: [
{ src: "/logo.png", sizes: "any", type: "image/png" },
],
};
}