First commit
This commit is contained in:
commit
7cf3558ba7
12933 changed files with 1180047 additions and 0 deletions
|
|
@ -0,0 +1,40 @@
|
|||
<div class="text-center mb-16">
|
||||
<h1 class="text-hero mb-8">
|
||||
Theme Demo für <span class="text-secondary">{{ $domainName ?? 'B2IN' }}</span>
|
||||
</h1>
|
||||
|
||||
<div class="card-elevated p-8 max-w-4xl mx-auto">
|
||||
<div class="grid md:grid-cols-2 gap-8 text-left">
|
||||
<div>
|
||||
<h3 class="text-xl font-medium mb-4">Aktuelle Domain-Konfiguration</h3>
|
||||
<div class="space-y-2 text-sm">
|
||||
<p><strong>Domain:</strong> {{ $domainName ?? 'Nicht erkannt' }}</p>
|
||||
<p><strong>Theme:</strong> {{ $theme ?? 'b2in' }}</p>
|
||||
<p><strong>View Prefix:</strong> {{ $viewPrefix ?? 'b2in' }}</p>
|
||||
<p><strong>URL:</strong> {{ $domainUrl ?? config('app.url') }}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3 class="text-xl font-medium mb-4">Theme-Details</h3>
|
||||
<div class="space-y-2 text-sm">
|
||||
@php
|
||||
$domainConfig = \App\Helpers\ThemeHelper::getDomainConfig();
|
||||
@endphp
|
||||
<p><strong>Primärfarbe:</strong>
|
||||
<span class="inline-block w-4 h-4 rounded-full mr-2"
|
||||
style="background-color: {{ \App\Helpers\ThemeHelper::getPrimaryColor() }}"></span>
|
||||
{{ \App\Helpers\ThemeHelper::getPrimaryColor() }}
|
||||
</p>
|
||||
<p><strong>Sekundärfarbe:</strong>
|
||||
<span class="inline-block w-4 h-4 rounded-full mr-2"
|
||||
style="background-color: {{ \App\Helpers\ThemeHelper::getSecondaryColor() }}"></span>
|
||||
{{ \App\Helpers\ThemeHelper::getSecondaryColor() }}
|
||||
</p>
|
||||
<p><strong>Primärschrift:</strong> {{ \App\Helpers\ThemeHelper::getPrimaryFont() }}</p>
|
||||
<p><strong>Sekundärschrift:</strong> {{ \App\Helpers\ThemeHelper::getSecondaryFont() }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue