Initialer Laravel Commit für BetiX
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (8.4) (push) Has been cancelled
tests / ci (8.5) (push) Has been cancelled

This commit is contained in:
2026-04-04 18:01:50 +02:00
commit 0280278978
374 changed files with 65210 additions and 0 deletions

View File

@@ -0,0 +1,90 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Betix Notification</title>
<style>
body {
background-color: #020202;
color: #ffffff;
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 40px 20px;
}
.header {
text-align: center;
margin-bottom: 40px;
}
.logo {
font-size: 24px;
font-weight: 900;
color: #ffffff;
letter-spacing: 2px;
text-decoration: none;
}
.logo span {
color: #ff007a;
}
.card {
background-color: #0a0a0a;
border: 1px solid #151515;
border-radius: 16px;
padding: 40px;
box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.title {
font-size: 20px;
font-weight: 800;
margin-bottom: 20px;
color: #ffffff;
text-transform: uppercase;
}
.text {
color: #888888;
line-height: 1.6;
margin-bottom: 30px;
font-size: 14px;
}
.btn {
display: inline-block;
background: linear-gradient(90deg, #ff007a, #be005b);
color: #ffffff;
text-decoration: none;
padding: 14px 30px;
border-radius: 8px;
font-weight: 700;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 1px;
box-shadow: 0 0 20px rgba(255, 0, 122, 0.4);
}
.footer {
text-align: center;
margin-top: 40px;
color: #444444;
font-size: 12px;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<a href="{{ config('app.url') }}" class="logo">BETI<span>X</span></a>
</div>
<div class="card">
@yield('content')
</div>
<div class="footer">
&copy; {{ date('Y') }} Betix Protocol. All rights reserved.
</div>
</div>
</body>
</html>