26 lines
597 B
PHP
26 lines
597 B
PHP
@extends('layouts.site')
|
|
|
|
@section('content')
|
|
<section class="wrapper bg-[#f0f7ff] py-12">
|
|
<div class="container px-4">
|
|
<div class="max-w-7xl mx-auto">
|
|
|
|
<!-- Welcome Section -->
|
|
@include('front.career.partials.welcome')
|
|
|
|
<!-- Statistics Section -->
|
|
@include('front.career.partials.stats')
|
|
|
|
<!-- Gantt Chart Section -->
|
|
@include('front.career.partials.gantt')
|
|
|
|
<!-- Interns Table / Detailed List Section -->
|
|
@include('front.career.partials.list')
|
|
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
@include('front.career.partials.guide_modal')
|
|
@endsection
|