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.
14 lines
197 B
PHP
14 lines
197 B
PHP
<?php
|
|
|
|
namespace App\Livewire\Profile;
|
|
|
|
use Livewire\Component;
|
|
|
|
class Appearance extends Component
|
|
{
|
|
public function render()
|
|
{
|
|
return view('livewire.profile.appearance');
|
|
}
|
|
}
|