159 lines
5.8 KiB
TypeScript
159 lines
5.8 KiB
TypeScript
import Link from "next/link";
|
|
import type { Metadata } from "next";
|
|
import { Geist, Geist_Mono } from "next/font/google";
|
|
import "./globals.css";
|
|
import { getServerSession } from "next-auth";
|
|
import { NextAuthSessionProvider } from "./_components/AuthSessionProvider";
|
|
import { options } from "./api/auth/[...nextauth]/auth";
|
|
import { ExitIcon, DiscordLogoIcon, InstagramLogoIcon, ReaderIcon, HomeIcon, PersonIcon, GearIcon } from "@radix-ui/react-icons";
|
|
|
|
const geistSans = Geist({
|
|
variable: "--font-geist-sans",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
const geistMono = Geist_Mono({
|
|
variable: "--font-geist-mono",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Create Next App",
|
|
description: "Generated by create next app",
|
|
};
|
|
|
|
export default async function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
const session = await getServerSession(options);
|
|
return (
|
|
<html lang="en">
|
|
<NextAuthSessionProvider session={session}>
|
|
<body
|
|
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
|
|
>
|
|
<div
|
|
className="hero min-h-screen"
|
|
style={{
|
|
backgroundImage:
|
|
"url(https://img.daisyui.com/images/stock/photo-1507358522600-9f71e620c44e.webp)",
|
|
}}
|
|
>
|
|
<div className="hero-overlay bg-opacity-60"></div>
|
|
|
|
{/* Card */}
|
|
<div className="hero-content text-neutral-content text-center w-full max-w-full h-full m-10">
|
|
<div className="card bg-base-100 shadow-2xl w-full h-5/6 max-h-[calc(100vh-13rem)] p-4 flex flex-col mr-24 ml-24">
|
|
{/* Top Navbar */}
|
|
<div className="navbar bg-base-200 shadow-md rounded-lg mb-4">
|
|
<div className="flex-1">
|
|
<a className="btn btn-ghost normal-case text-xl">
|
|
Virtual Air Rescue - HUB
|
|
</a>
|
|
</div>
|
|
<div className="flex-none">
|
|
<ul className="flex space-x-2 px-1">
|
|
<li>
|
|
<Link href="/">
|
|
<button className="btn btn-sm btn-outline btn-info">
|
|
Zum Dispatch
|
|
</button>
|
|
</Link>
|
|
</li>
|
|
<li>
|
|
<Link href="/logout">
|
|
<button className="btn btn-sm">
|
|
<ExitIcon /> Logout
|
|
</button>
|
|
</Link>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Hauptlayout: Sidebar + Content (nimmt Resthöhe ein) */}
|
|
<div className="flex flex-grow overflow-hidden">
|
|
{/* Linke Sidebar */}
|
|
<div className="w-64 bg-base-300 p-4 rounded-lg shadow-md">
|
|
<ul className="menu">
|
|
<li>
|
|
<a>
|
|
<HomeIcon /> Dashboard
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a>
|
|
<PersonIcon /> Profile
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a>
|
|
<GearIcon /> Settings
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
{/* Scrollbarer Content-Bereich */}
|
|
<div className="flex-grow bg-base-100 p-6 rounded-lg shadow-md ml-4 overflow-auto h-full">
|
|
{children}
|
|
</div>
|
|
</div>
|
|
|
|
{/* Footer */}
|
|
<footer className="footer flex justify-between items-center p-4 bg-base-200 mt-4 rounded-lg shadow-md">
|
|
{/* Left: Impressum & Datenschutz */}
|
|
<div className="flex gap-4 text-sm">
|
|
<a href="/impressum" className="hover:text-primary">
|
|
Impressum
|
|
</a>
|
|
<a href="/datenschutz" className="hover:text-primary">
|
|
Datenschutzerklärung
|
|
</a>
|
|
</div>
|
|
|
|
{/* Center: Copyright */}
|
|
<p className="text-sm">
|
|
Copyright © {new Date().getFullYear()} - VAR Luftretung
|
|
</p>
|
|
|
|
{/* Right: Social Icons */}
|
|
<div className="flex gap-4">
|
|
<div className="tooltip tooltip-top" data-tip="Discord">
|
|
<a
|
|
href="https://discord.com"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="hover:text-primary"
|
|
>
|
|
<DiscordLogoIcon className="w-5 h-5" />
|
|
</a>
|
|
</div>
|
|
<div className="tooltip tooltip-top" data-tip="Instagram">
|
|
<a
|
|
href="https://instagram.com"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="hover:text-primary"
|
|
>
|
|
<InstagramLogoIcon className="w-5 h-5" />
|
|
</a>
|
|
</div>
|
|
<div className="tooltip tooltip-top" data-tip="Knowledgebase">
|
|
<a href="/docs" className="hover:text-primary">
|
|
<ReaderIcon className="w-5 h-5" />
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</NextAuthSessionProvider>
|
|
</html>
|
|
);
|
|
}
|