Skip to content

Commit 7487a07

Browse files
author
Sebastian Fix
committed
wip
1 parent b74282a commit 7487a07

4 files changed

Lines changed: 51 additions & 2 deletions

File tree

resources/views/app/contact/index.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ classAttributes="block"/>
2121
<p>CH-4455 Zunzgen</p>
2222
</address>
2323
<x-a-badge href="https://www.google.com/maps/place/Hauptstrasse+91,+4455+Zunzgen,+Schweiz"
24-
label="{{ __('Google Maps') }}" class-attributes="mt-1" target="_blank">
24+
label="{{ __('Google Maps') }}" class-attributes="mt-1" target="_blank" rel="noopener noreferrer">
2525
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
2626
stroke="currentColor" class="mr-1 size-3">
2727
<path stroke-linecap="round" stroke-linejoin="round"

resources/views/app/legal/imprint/index.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</address>
1313

1414
<x-a-badge href="https://zefix.ch/de/search/entity/list/firm/1598166" label="{{ __('Zefix') }}"
15-
class-attributes="mt-1" target="_blank">
15+
class-attributes="mt-1" target="_blank" rel="noopener noreferrer">
1616
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
1717
stroke="currentColor" class="mr-1 size-3">
1818
<path stroke-linecap="round" stroke-linejoin="round"

resources/views/app/start/index.blade.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,9 @@
1212
@endforeach
1313
</x-list>
1414
</x-section>
15+
16+
17+
<x-docuware-showme/>
18+
19+
1520
</x-app-layout>
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
@use(App\Enums\LocaleEnum;use Illuminate\Support\Str)
2+
@php
3+
$showme_url = match (app()->getLocale()) {
4+
LocaleEnum::EN->value => 'https://showme.docuware.com/en-gb/interactive-tours',
5+
default => 'https://showme.docuware.com/de/interactive-tours'
6+
};
7+
$product_url = match (app()->getLocale()) {
8+
LocaleEnum::EN->value => 'https://www.paperflakes.ch/services/en_CH/dms-ecm-docuware',
9+
default => 'https://www.paperflakes.ch/dienstleistungen/de_CH/dms-ecm-docuware'
10+
};
11+
@endphp
12+
13+
<x-section class-attributes="bg-gray-100">
14+
<section class="flex flex-col md:flex-row items-center justify-between gap-10 p-6 md:p-12">
15+
<div class="w-full">
16+
<x-h2 title="Erleben Sie DocuWare in Aktion"/>
17+
<p class="text-gray-700 text-base md:text-lg mb-6">
18+
Entdecken Sie interaktive Touren rund um intelligente Dokumentenverarbeitung, Rechnungsfreigabe und
19+
Vertragsmanagement. Sehen Sie live, wie DocuWare Prozesse vereinfacht, Fehler reduziert und Ihr Business
20+
effizienter macht.
21+
</p>
22+
23+
<div class="flex flex-col sm:flex-row gap-2 text-center">
24+
<a href="{{ $showme_url }}" target="_blank" rel="noopener noreferrer"
25+
aria-label="Interaktive DocuWare-Tour starten"
26+
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]"
27+
style="background-color: #2E36B4;">
28+
<span>Jetzt entdecken</span>
29+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
30+
stroke="currentColor" class="ml-1 w-4 h-4">
31+
<path stroke-linecap="round" stroke-linejoin="round"
32+
d="M13.5 6H5.25A2.25 2.25 0 0 0 3 8.25v10.5A2.25 2.25 0 0 0 5.25 21h10.5A2.25 2.25 0 0 0 18 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25"/>
33+
</svg>
34+
</a>
35+
36+
<a href="{{ $product_url }}" rel="noopener noreferrer"
37+
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]"
38+
style="background-color: white; color: #2E36B4; border-color: #2E36B4;">
39+
Mehr über DocuWare
40+
</a>
41+
</div>
42+
</div>
43+
</section>
44+
</x-section>

0 commit comments

Comments
 (0)