mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2025-12-15 00:06:48 +00:00
21 lines
705 B
PHP
21 lines
705 B
PHP
<?php
|
|
|
|
use App\Traits\SeoTrait;
|
|
use Livewire\Volt\Component;
|
|
|
|
new class extends Component {
|
|
use SeoTrait;
|
|
}; ?>
|
|
|
|
<section class="w-full">
|
|
@include('partials.settings-heading')
|
|
|
|
<x-settings.layout :heading="__('Appearance')" :subheading=" __('Update the appearance settings for your account')">
|
|
<flux:radio.group x-data variant="segmented" x-model="$flux.appearance">
|
|
<flux:radio value="light" icon="sun">{{ __('Light') }}</flux:radio>
|
|
<flux:radio value="dark" icon="moon">{{ __('Dark') }}</flux:radio>
|
|
<flux:radio value="system" icon="computer-desktop">{{ __('System') }}</flux:radio>
|
|
</flux:radio.group>
|
|
</x-settings.layout>
|
|
</section>
|