Up to Bloom v0.23

This commit is contained in:
Esteban
2026-07-04 23:18:28 +02:00
parent d58f2195f5
commit 487fdb9f75
13 changed files with 211 additions and 1 deletions
+38
View File
@@ -33,5 +33,43 @@
<h3>{{ __('app.feature_home_title') }}</h3>
<p>{{ __('app.feature_home_text') }}</p>
</div>
<div class="feature-card">
<div class="feature-icon">🔔</div>
<h3>{{ __('app.notifiers') }}</h3>
<p>{{ __('app.notifiers_lede') }}</p>
</div>
</section>
<section class="screenshots-section">
<div class="screenshots-header">
<h2>{{ __('app.screenshots_title') }}</h2>
<p>{{ __('app.screenshots_lede') }}</p>
</div>
@php
$screenshots = [
['file' => 'dashboard-light.png', 'caption' => __('app.screenshot_dashboard')],
['file' => 'dashboard-dark.png', 'caption' => __('app.screenshot_dark')],
['file' => 'reader-light.png', 'caption' => __('app.screenshot_reader')],
['file' => 'catalog-light.png', 'caption' => __('app.screenshot_catalog')],
['file' => 'notifiers-light.png', 'caption' => __('app.screenshot_notifiers')],
];
@endphp
<div class="screenshot-gallery">
<div class="screenshot-main">
<img id="screenshotMainImg" src="{{ asset('images/screenshots/' . $screenshots[0]['file']) }}" alt="{{ $screenshots[0]['caption'] }}">
</div>
<div class="screenshot-thumbs">
@foreach ($screenshots as $index => $shot)
<button type="button" class="screenshot-thumb {{ $index === 0 ? 'active' : '' }}" data-img="{{ asset('images/screenshots/' . $shot['file']) }}" data-caption="{{ $shot['caption'] }}">
<img src="{{ asset('images/screenshots/' . $shot['file']) }}" alt="{{ $shot['caption'] }}" loading="lazy">
</button>
@endforeach
</div>
<p class="screenshot-caption" id="screenshotCaption">{{ $screenshots[0]['caption'] }}</p>
</div>
</section>
<script src="{{ asset('js/screenshot-gallery.js') }}" defer></script>
@endsection