Initial commit - lms-v2 + CLAUDE.md

This commit is contained in:
Iwit
2026-05-30 22:15:16 +07:00
commit 5811409e2d
183 changed files with 23225 additions and 0 deletions
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ujian CBT - {{ $exam->title }}</title>
@vite(['resources/css/app.css', 'resources/js/app.js'])
@livewireStyles
</head>
<body class="bg-slate-100 font-sans antialiased selection:bg-indigo-500 selection:text-white">
<div class="bg-white border-b border-slate-200 px-6 py-3 flex justify-between items-center shadow-sm">
<div class="flex items-center space-x-3">
<div class="w-8 h-8 bg-indigo-600 rounded-md flex items-center justify-center text-white font-bold">
T
</div>
<div>
<h1 class="text-sm font-bold text-slate-800 tracking-tight">Tunggal Pharma LMS</h1>
<p class="text-[10px] text-slate-500 uppercase tracking-wider">Computer Based Test V2.0</p>
</div>
</div>
<div class="text-right">
<span class="text-sm font-bold text-slate-700">{{ Auth::user()->first_name }} {{ Auth::user()->last_name }}</span>
<span class="text-xs px-2 py-0.5 bg-slate-100 text-slate-600 rounded border border-slate-200 ml-2 font-mono">
{{ Auth::user()->nik }}
</span>
</div>
</div>
<main class="py-8 px-4 sm:px-6 lg:px-8">
@livewire('cbt.exam-engine', ['exam' => $exam])
</main>
@livewireScripts
</body>
</html>