Nexus upgrade design and refresh

This commit is contained in:
2026-04-11 01:23:28 +02:00
parent 9d5bb2d3cf
commit e83925ba64
53 changed files with 13388 additions and 60 deletions

View File

@@ -19,7 +19,7 @@ $sidebarDefault = ($moduleSidebar['default'] ?? 'collapsed') === 'open' ? 'open'
$sidebarItems = $moduleSidebar['items'] ?? [];
?>
<!doctype html>
<html lang="en">
<html lang="de" data-theme="<?= e($theme) ?>" data-accent="logo">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
@@ -27,7 +27,7 @@ $sidebarItems = $moduleSidebar['items'] ?? [];
<?php asset_styles(); ?>
<?php asset_scripts('header'); ?>
</head>
<body data-theme="<?= e($theme) ?>">
<body>
<div class="bg-orb orb-a"></div>
<div class="bg-orb orb-b"></div>
@@ -40,7 +40,7 @@ $sidebarItems = $moduleSidebar['items'] ?? [];
<div class="dropdown">
<button class="nav-link dropdown-toggle" type="button">Module ▾</button>
<div class="dropdown-menu">
<?php foreach (modules()->all() as $m): ?>
<?php foreach (app()->auth()->filterModules(modules()->all()) as $m): ?>
<?php if (!empty($m['enabled'])): ?>
<a class="dropdown-item" href="/module/<?= e($m['name']) ?>"><?= e($m['title']) ?></a>
<?php endif; ?>