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