25 lines
567 B
PHP
25 lines
567 B
PHP
@extends('layout.app')
|
|
@section('scripts')
|
|
@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
|