Files
mtdb_movie/common/resources/views/install/components/install-layout.blade.php
maher 703f50a09d
Some checks failed
Build / run (push) Has been cancelled
first commit
2025-10-29 11:42:25 +01:00

24 lines
768 B
PHP
Executable File

<?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>