38 lines
1.7 KiB
PHP
38 lines
1.7 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="de" class="h-full bg-gray-900">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Nexus Control Panel</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<style>
|
|
/* Custom Scrollbar für Nexus-Look */
|
|
::-webkit-scrollbar { width: 8px; }
|
|
::-webkit-scrollbar-track { background: #111827; }
|
|
::-webkit-scrollbar-thumb { background: #374151; border-radius: 4px; }
|
|
::-webkit-scrollbar-thumb:hover { background: #4B5563; }
|
|
</style>
|
|
</head>
|
|
<body class="h-full text-gray-300 font-sans antialiased flex flex-col">
|
|
|
|
<nav class="bg-gray-800 border-b border-gray-700">
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<div class="flex items-center justify-between h-16">
|
|
<div class="flex items-center">
|
|
<div class="flex-shrink-0 text-indigo-500 font-bold text-xl tracking-wider">
|
|
NEXUS
|
|
</div>
|
|
<div class="hidden md:block">
|
|
<div class="ml-10 flex items-baseline space-x-4">
|
|
<a href="/" class="bg-gray-900 text-white px-3 py-2 rounded-md text-sm font-medium">Dashboard</a>
|
|
<a href="#" class="text-gray-300 hover:bg-gray-700 hover:text-white px-3 py-2 rounded-md text-sm font-medium">DHCP Leases</a>
|
|
<a href="#" class="text-gray-300 hover:bg-gray-700 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Logs</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<main class="flex-grow">
|
|
<div class="max-w-7xl mx-auto py-6 sm:px-6 lg:px-8"> |