diff --git a/lang/de/app.php b/lang/de/app.php
index a0056a4..a83823f 100644
--- a/lang/de/app.php
+++ b/lang/de/app.php
@@ -20,11 +20,39 @@ return [
],
'about' => [
'subtitle' => 'Unbeschwertes Einreisen in die stationären sowie temporären CCC Bezirksregionen',
- 'text1' => 'Das C3Gov bietet Ihnen die Ausstellung unserer zertifizierten Reisedokumente an, mit denen Sie unbeschwert in die stationär sowie temporär bestehenden Bezirksregionen des CCC einreisen und Ihren Aufenthalt verifizieren lassen können.',
+ 'text1' => 'Das C3Gov bietet Ihnen die Ausstellung unserer zertifizierten Reisepässe an, mit denen Sie unbeschwert in die Botschaften [Hackspaces] sowie temporär bestehenden Bezirksregionen des CCC einreisen und Ihren Aufenthalt verifizieren lassen können.',
'text2' => 'Unser Team setzt bei dem Ausstellen auf hochqualitative Stempel und neuste Technik. Ob Hacker*innen-Reisepass oder Junghackerpass - unser stets motiviertes Team hilft Ihnen gerne weiter.',
'text3' => 'Jetzt neu',
'text4' => 'Um unsere Internetpräsenz zu erweitern, können Sie uns jetzt auch im Fediversum besuchen.',
'text5' => 'Klicken Sie dafür auf diesen Verweis:',
'insertvideo' => '*Hier Werbefilm einfügen*'
- ]
+ ],
+ 'services' => [
+ 'title' => 'Unsere Dienstleistungen im Überblick',
+ 'topic1' => [
+ 'title' => 'Ausstellung von Reisepässen',
+ 'content' => 'Unser Team kümmert sich um die Ausstellung der Reisepässe.
+
Die Pässe werden durch neuste Technik automatisch bedruckt und mit Ihren Angaben versehen.
+
Um die Echtheit des Passes zu verifizieren, erhält jeder Pass eine Sicherheitsnummer und wird letztendlich abgestempelt.
+
Folgende Formate stehen Ihnen zur Verfügung:
+
- Hacker*innen-Reisepass
+ - Junghackerpass
'
+ ],
+ 'topic2' => [
+ 'title' => 'Nachträgliche Verifizierung der Reisepässe',
+ 'content' => 'Sie besitzen bereits ein Reisedokument, welches jedoch noch nicht verifiziert wurde?
+
Wir gehen mit Ihnen die nötigen Schritte durch, um Ihren Pass zu legitimisieren.
+
Völlig unkompliziert.'
+ ],
+ 'topic3' => [
+ 'title' => 'Zweitausstellung bei Verlust oder maximaler Auslastung Ihres Reisepasses',
+ 'content' => 'Sollten Sie Ihren Reisepass verlieren oder sollte der Reisepass seine maximle Kapazität ausgereizt haben,
+
stellen wir Ihnen gerne ein Ersatzdomument aus.
+
Leider können Stempel vorheriger Besuche der Botschaften [Hackspaces] des CCC nicht ersetzt werden.'
+ ],
+ 'topic4' => [
+ 'title' => 'Anwesenheitsbestätigung',
+ 'content' => 'Sollten Sie eine Bestätigung Ihres Besuchs benötigen, stellen wir Ihnen diese selbstverständlich in Papierform aus.'
+ ]
+ ]
];
diff --git a/lang/en/app.php b/lang/en/app.php
index 01d3585..4f3464f 100644
--- a/lang/en/app.php
+++ b/lang/en/app.php
@@ -19,12 +19,40 @@ return [
'apply' => 'Apply now',
],
'about' => [
- 'subtitle' => 'Hassle-Free Entry into CCC’s Permanent and Temporary District Regions',
- 'text1' => 'C3Gov offers you the issuance of our certified travel documents, which allow you to enter the CCC’s permanent and temporary district regions hassle-free and have your stay verified.',
+ 'subtitle' => 'Hassle-Free Entry into CCC\'s Permanent and Temporary District Regions',
+ 'text1' => 'C3Gov offers you the issuance of our certified travel documents, which allow you to enter the CCC\'s permanent and temporary district regions hassle-free and have your stay verified.',
'text2' => 'Our team uses high-quality stamps and the latest technology when issuing these documents.',
'text3' => 'NEW!!!',
'text4' => 'To expand our online presence, you can now also visit us on the Fediverse.',
'text5' => 'To do so, click on this link:',
'insertvideo' => '*Insert promotional video here*'
- ]
+ ],
+ 'services' => [
+ 'title' => 'Our Service Overview',
+ 'topic1' => [
+ 'title' => 'Issuance of Hacker Passports',
+ 'content' => 'Our team handles the issuance of travel documents.
+
The passports are automatically printed using the latest technology - personalised with your details.
+
To verify the authenticity of the passport, each one is assigned a security number and finally stamped.
+
The following formats are available:
+ - Hacker Passport
+ - Junghackerpass [German only]
'
+ ],
+ 'topic2' => [
+ 'title' => 'Retrospective Verification of Passports',
+ 'content' => 'Do you already have a passport that has not yet been verified?
+
We will guide you through the necessary steps to validate your passport.
+
Simple and clean.'
+ ],
+ 'topic3' => [
+ 'title' => 'Replacement Passport issued in the Event of Loss or when your Passport is full',
+ 'content' => 'Should you lose your passport or should your passport have reached its maximum capacity,
+
we will be happy to issue you with a replacement document.
+
Unfortunately, stamps from previous visits to the CCC\'s embassies [hackspaces] cannot be replaced.'
+ ],
+ 'topic4' => [
+ 'title' => 'Certification of Attendance',
+ 'content' => 'Should you require certification of your visit, we will of course provide you with an official document.'
+ ]
+ ]
];
diff --git a/resources/views/content/services.blade.php b/resources/views/content/services.blade.php
index 0ea8b70..638e851 100644
--- a/resources/views/content/services.blade.php
+++ b/resources/views/content/services.blade.php
@@ -3,5 +3,17 @@
@endsection
@section('content')
-
+ {{ __('app.services.title') }}
+
+ {{ __('app.services.topic1.title') }}
+ {!! __('app.services.topic1.content') !!}
+
+ {{ __('app.services.topic2.title') }}
+ {!! __('app.services.topic2.content') !!}
+
+ {{ __('app.services.topic3.title') }}
+ {!! __('app.services.topic3.content') !!}
+
+ {{ __('app.services.topic4.title') }}
+ {!! __('app.services.topic4.content') !!}
@endsection