Progress und aber auch Über uns

This commit is contained in:
2026-03-24 00:33:53 +01:00
parent 58472b28ca
commit 87c7193686
6 changed files with 55 additions and 7 deletions

View File

@@ -9,10 +9,19 @@ use Illuminate\Support\Facades\Auth;
class TickerController extends Controller
{
public function showEditTicker(){
public function deleteTicker(Request $request){
if(Auth::check()){
}
abort(404);
}
public function addTicker(Request $request){
if(Auth::check()){
}
abort(404);
}
public static function getTicker(){
$t = "";

View File

@@ -16,5 +16,14 @@ return [
'news' => 'Neuigkeiten',
'contact' => 'Kontakt',
'imprint' => 'Impressum',
],
'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.',
'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*'
]
];

View File

@@ -16,5 +16,14 @@ return [
'imprint' => 'Imprint',
'contact' => 'Contact',
'news' => 'News',
],
'about' => [
'subtitle' => 'Hassle-Free Entry into CCCs Permanent and Temporary District Regions',
'text1' => 'C3Gov offers you the issuance of our certified travel documents, which allow you to enter the CCCs 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*'
]
];

View File

@@ -1,6 +1,6 @@
.header {
background-color: darkred;
background-color: #999;
}
.banner {
@@ -9,7 +9,7 @@
}
.language {
background-color: #f8b803;
background-color: #ccc;
}
#logo {
@@ -18,7 +18,7 @@
}
.ticker {
background-color: #0f0;
background-color: #0c0;
min-height: 2vh;
}
@@ -29,13 +29,13 @@
.navbar {
background-color: pink;
background-color: #ccc;
min-height: 80vh;
}
.content {
background-color: aqua;
background-color: #dcccaa;
min-height: 80vh;
}

View File

@@ -1,5 +1,9 @@
function remove(lang){
let s = [];
$("#ticker_" + lang).each(function(){
s.push($(this).val());
});
console.log(JSON.stringify(s));
}
function insert(lang){

View File

@@ -3,5 +3,22 @@
@endsection
@section('content')
<h2>{{ __('app.nav.about') }}</h2>
<h1>{{ __('app.about.subtitle') }}</h1>
{{ __('app.about.text1') }}
<p>
{{ __('app.about.text2') }}
<p>
<h3>{{ __('app.about.text3') }}</h3>
{{ __('app.about.text4') }}
<p>{{ __('app.about.text5') }} <a href="https://chaos.social/@c3gov">https://chaos.social/@c3gov</a>
<br />
<br />
<br />
<br />
<br />
<br />
{{ __('app.about.insertvideo') }}
@endsection