feat: add internship workflow guide modal to dashboards and visualize current date in Gantt chart

This commit is contained in:
Ümit Tunç
2026-06-26 16:42:24 +03:00
parent aa6858bc0f
commit 32c556a87b
5 changed files with 170 additions and 1 deletions
@@ -21,6 +21,23 @@
</form>
</div>
<!-- Stajyer Çalışma Rehberi Callout -->
<div class="bg-gradient-to-r from-blue-600 to-indigo-600 rounded-3xl p-6 shadow-xl text-white mb-8 flex flex-col sm:flex-row items-start sm:items-center justify-between gap-6">
<div class="flex items-center gap-4">
<div class="w-12 h-12 rounded-2xl bg-white/10 backdrop-blur-md flex items-center justify-center text-2xl text-white flex-shrink-0">
<i class="uil uil-info-circle"></i>
</div>
<div>
<h4 class="font-extrabold text-base tracking-tight">Stajyer Çalışma & Git Workflow Rehberi</h4>
<p class="text-xs text-blue-100 font-medium mt-1">GitHub reposu oluşturma, günlük commitler ve toplantı kuralları hakkında bilgi edinin.</p>
</div>
</div>
<button onclick="toggleGuideModal(true)" class="px-5 py-3 bg-white text-blue-600 hover:bg-blue-50 font-extrabold text-sm rounded-xl transition-all shadow-md flex items-center gap-2 self-stretch sm:self-auto justify-center">
<i class="uil uil-book-open"></i>
<span>Rehberi İncele</span>
</button>
</div>
<!-- Session & Validation Alerts -->
@if(session('success'))
<div class="bg-green-50 border border-green-200 text-green-700 px-6 py-4 rounded-3xl mb-8 flex items-center gap-3 shadow-sm">
@@ -1079,4 +1096,6 @@
}
</style>
@endpush
@include('front.career.partials.guide_modal')
@endsection