mirror of
https://github.com/coollabsio/coolify.git
synced 2026-06-13 19:09:50 +00:00
b81bfc7f32
Add a profile appearance section for theme, page width, and zoom preferences. Move changelog access into the sidebar and bump the Coolify version to 4.1.2.
18 lines
668 B
PHP
18 lines
668 B
PHP
<div class="pb-6">
|
|
<h1>Profile</h1>
|
|
<div class="subtitle">Your user profile settings.</div>
|
|
<div class="navbar-main">
|
|
<nav class="flex items-center gap-6 min-h-10">
|
|
<a class="{{ request()->routeIs('profile') ? 'dark:text-white' : '' }}" {{ wireNavigate() }}
|
|
href="{{ route('profile') }}">
|
|
General
|
|
</a>
|
|
<a class="{{ request()->routeIs('profile.appearance') ? 'dark:text-white' : '' }}" {{ wireNavigate() }}
|
|
href="{{ route('profile.appearance') }}">
|
|
Appearance
|
|
</a>
|
|
<div class="flex-1"></div>
|
|
</nav>
|
|
</div>
|
|
</div>
|