Interview module is refactored to use layouts and re-usable components along with domain components. Style remains identitical to previous design.
27 lines
1.0 KiB
PHP
27 lines
1.0 KiB
PHP
@props([
|
|
'title' => 'Executive Evaluation Report',
|
|
])
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ $title }} | SingleLogin</title>
|
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&family=Outfit:wght@500;600;700;800&family=Fira+Code:wght@400;500&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
|
|
|
|
@stack('styles')
|
|
@stack('head-scripts')
|
|
</head>
|
|
<body {{ $attributes->merge(['class' => "bg-slate-100 text-slate-900 leading-normal p-5 md:p-10 font-['Instrument_Sans',sans-serif] antialiased print:bg-white print:p-0 print:text-black"]) }}>
|
|
|
|
{{ $slot }}
|
|
|
|
@stack('scripts')
|
|
</body>
|
|
</html>
|