2025-08-26 15:45:35 +02:00

53 lines
1.7 KiB
JavaScript

import { useRouter } from 'next/router';
import { useState } from 'react';
const AdminLayout = ({ children }) => {
const router = useRouter();
const [isLoggingOut, setIsLoggingOut] = useState(false);
const handleLogout = async () => {
setIsLoggingOut(true);
try {
// Cookie löschen
document.cookie = 'isAuthenticated=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;';
// Zur Login-Seite weiterleiten
router.push('/admin/login');
} catch (error) {
console.error('Logout-Fehler:', error);
} finally {
setIsLoggingOut(false);
}
};
return (
<div className="min-h-screen bg-gray-50">
{/* Admin Header */}
<header className="bg-white shadow-sm border-b">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="flex justify-between items-center h-16">
<h1 className="text-xl font-semibold text-gray-900">
Admin Panel
</h1>
<button
onClick={handleLogout}
disabled={isLoggingOut}
className="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md text-white bg-red-600 hover:bg-red-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-red-500 disabled:opacity-50 disabled:cursor-not-allowed"
>
{isLoggingOut ? 'Wird abgemeldet...' : 'Abmelden'}
</button>
</div>
</div>
</header>
{/* Main Content */}
<main className="max-w-7xl mx-auto py-6 sm:px-6 lg:px-8">
<div className="px-4 py-6 sm:px-0">
{children}
</div>
</main>
</div>
);
};
export default AdminLayout;