CluPilotCloud/resources/views/legal.blade.php

33 lines
1.4 KiB
PHP

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ $title }} CluPilot Cloud</title>
@verbatim
<style>
:root{--accent:#f97316;--ink:#1d1d1f;--muted:#86868b;--bg:#f5f5f7;--font:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif}
*{margin:0;box-sizing:border-box}
body{font-family:var(--font);background:var(--bg);color:var(--ink);min-height:100vh;display:grid;place-items:center;padding:24px}
main{max-width:600px;text-align:center}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
.k{color:#f97316;font-weight:700;text-transform:uppercase;letter-spacing:.1em;font-size:.8rem;margin-bottom:8px}
h1{font-size:2rem;letter-spacing:-.02em;margin-bottom:12px}
p{color:var(--muted);line-height:1.6;margin-bottom:8px}
.back{display:inline-block;margin-top:24px;background:var(--accent);color:#fff;padding:10px 22px;border-radius:99px;font-weight:600}
.back:hover{text-decoration:none;background:#ea6a0a}
</style>
@endverbatim
</head>
<body>
<main>
<p class="k">CluPilot Cloud</p>
<h1>{{ $title }}</h1>
<p>Dieser Inhalt wird noch ergänzt.</p>
<p>Bei Fragen erreichen Sie uns unter <a href="mailto:office&#64;clupilot.com">office&#64;clupilot.com</a>.</p>
<a class="back" href="{{ route('home') }}">Zurück zur Startseite</a>
</main>
</body>
</html>