first commit
Some checks failed
Build / run (push) Has been cancelled

This commit is contained in:
maher
2025-10-29 11:42:25 +01:00
commit 703f50a09d
4595 changed files with 385164 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
@if($attributes->has('href'))
<a href="{{ $attributes->get('href') }}" type="submit" class="mt-24 block w-max py-8 px-16 bg-primary font-semibold text-on-primary rounded shadow active:bg-primary-dark focus:ring">{{$slot}}</a>
@else
<button type="submit" class="mt-24 block w-max py-8 px-16 bg-primary font-semibold text-on-primary rounded shadow active:bg-primary-dark focus:ring">{{$slot}}</button>
@endif

View File

@@ -0,0 +1,23 @@
<?php
$cssVariables = collect(config('common.themes.light'))
->mapWithKeys(fn($value, $key) => [$key => $value])
->map(fn($value, $key) => "$key: $value;")
->implode('');
$buttonClass =
'py-8 px-16 bg-primary font-semibold text-on-primary rounded shadow active:bg-primary-dark focus:ring';
?>
<!DOCTYPE html>
<html style="{{$cssVariables}}">
<head>
<title>Install</title>
@vite('resources/client/main.css')
</head>
<body class="bg-alt flex flex-col items-center justify-center text-main">
<img src="{{ file_exists(public_path('images/logo-dark.png')) ? asset('images/logo-dark.png') : asset('images/logo-dark.svg') }}" alt="Logo" class="h-40 mb-34" />
<div class="w-780 p-24 rounded-md bg shadow border">
{{$slot}}
</div>
</body>
</html>