Interview module is refactored to use layouts and re-usable components along with domain components. Style remains identitical to previous design.
33 lines
1.3 KiB
PHP
33 lines
1.3 KiB
PHP
@props([
|
|
'title' => 'Candidate Portal',
|
|
])
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
<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&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-[#0b0f19] text-white min-h-screen flex items-center justify-center p-4 relative overflow-hidden font-['Instrument_Sans',sans-serif] antialiased"]) }}>
|
|
|
|
<!-- Decorative background glow -->
|
|
<div class="absolute -top-[15%] -left-[15%] w-[60%] h-[60%] rounded-full bg-radial from-indigo-500/20 to-transparent pointer-events-none z-0"></div>
|
|
|
|
<div class="relative z-10 w-full flex items-center justify-center">
|
|
{{ $slot }}
|
|
</div>
|
|
|
|
@stack('scripts')
|
|
</body>
|
|
</html>
|