Skip to content

Commit 7d02fec

Browse files
author
Sebastian Fix
committed
wip
1 parent 6ee9500 commit 7d02fec

4 files changed

Lines changed: 36 additions & 6 deletions

File tree

lang/de_CH/components.php

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
3+
return [
4+
5+
'docuware' => [
6+
'showme' => [
7+
'title' => 'Erleben Sie DocuWare in Aktion',
8+
'teaser' => 'Entdecken Sie interaktive Touren rund um intelligente Dokumentenverarbeitung, Rechnungsfreigabe und
9+
Vertragsmanagement. Sehen Sie live, wie DocuWare Prozesse vereinfacht, Fehler reduziert und Ihr Business
10+
effizienter macht.',
11+
'buttons' => [
12+
'discover_now' => 'Jetzt entdecken',
13+
'more' => 'Mehr über DocuWare,',
14+
],
15+
],
16+
],
17+
];

lang/en_CH/components.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?php
2+
3+
return [
4+
5+
'docuware' => [
6+
'showme' => [
7+
'title' => 'Experience DocuWare in Action',
8+
'teaser' => 'Discover interactive tours focused on intelligent document processing, invoice approval, and contract management. See how DocuWare streamlines processes, reduces errors, and makes your business more efficient.',
9+
'buttons' => [
10+
'discover_now' => 'Discover Now',
11+
'more' => 'More about DocuWare',
12+
],
13+
],
14+
],
15+
];

resources/views/components/docuware-showme.blade.php

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,17 @@
1717
1818
<section class="relative z-10 flex flex-col md:flex-row items-center justify-between gap-10 p-6 md:p-12">
1919
<div class="w-full">
20-
<x-h2 title="Erleben Sie DocuWare in Aktion"/>
20+
<x-h2 :title="__('components.docuware.showme.title')"/>
2121
<p class="text-gray-700 text-base md:text-lg mb-6">
22-
Entdecken Sie interaktive Touren rund um intelligente Dokumentenverarbeitung, Rechnungsfreigabe und
23-
Vertragsmanagement. Sehen Sie live, wie DocuWare Prozesse vereinfacht, Fehler reduziert und Ihr Business
24-
effizienter macht.
22+
{{ __('components.docuware.showme.teaser') }}
2523
</p>
2624
2725
<div class="flex flex-col sm:flex-row gap-2 text-center">
2826
<a href="{{ $showme_url }}" target="_blank" rel="noopener noreferrer"
2927
aria-label="Interaktive DocuWare-Tour starten"
3028
class="flex items-center justify-center px-4 py-2 rounded-md text-sm font-medium hover:font-semibold transition text-white w-full sm:w-auto focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-[#2E36B4]"
3129
style="background-color: #2E36B4;">
32-
<span>Jetzt entdecken</span>
30+
{{ __('components.docuware.showme.buttons.discover_now') }}
3331
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
3432
stroke="currentColor" class="ml-1 w-4 h-4">
3533
<path stroke-linecap="round" stroke-linejoin="round"
@@ -40,7 +38,7 @@ class="flex items-center justify-center px-4 py-2 rounded-md text-sm font-medium
4038
<a href="{{ $product_url }}" rel="noopener noreferrer"
4139
class="px-4 py-2 border rounded-md text-sm font-medium hover:font-semibold transition w-full sm:w-auto focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-[#2E36B4]"
4240
style="background-color: white; color: #2E36B4; border-color: #2E36B4;">
43-
Mehr über DocuWare
41+
{{ __('components.docuware.showme.buttons.more') }}
4442
</a>
4543
</div>
4644
</div>

tailwind.config.js

Whitespace-only changes.

0 commit comments

Comments
 (0)