333 lines
12 KiB
PHP
333 lines
12 KiB
PHP
@extends('user.layouts.user')
|
|
|
|
@push('dashboard')
|
|
<!-- Google Font: Poppins -->
|
|
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
<!-- Bootstrap 5 -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<!-- Animate.css -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
|
|
<!-- Bootstrap Icons -->
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css" />
|
|
|
|
<style>
|
|
/* ===========================
|
|
GLOBAL & NAVBAR (UNCHANGED)
|
|
=========================== */
|
|
body {
|
|
margin: 0;
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
.logo {
|
|
color: #2196F3;
|
|
font-weight: bold;
|
|
font-size: 22px;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.role {
|
|
font-weight: bold;
|
|
color: #000;
|
|
font-size: 1px;
|
|
}
|
|
|
|
|
|
/* ===========================
|
|
PREMIUM CONTENT STYLES
|
|
=========================== */
|
|
/* Section Titles with gradient underline */
|
|
.section-title {
|
|
font-family: 'Poppins', sans-serif;
|
|
font-weight: 700;
|
|
font-size: 2.5rem;
|
|
color: #007bff;
|
|
position: relative;
|
|
display: inline-block;
|
|
padding-bottom: .5rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.section-title::after {
|
|
content: '';
|
|
position: absolute;
|
|
width: 50%;
|
|
height: 4px;
|
|
background: linear-gradient(90deg, #007bff, #00bfff);
|
|
bottom: 0;
|
|
left: 25%;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
/* Carousel */
|
|
#polijeCarousel .carousel-inner {
|
|
height: 500px;
|
|
border-radius: 1rem;
|
|
overflow: hidden;
|
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
#polijeCarousel .carousel-item img {
|
|
object-fit: cover;
|
|
width: 100%;
|
|
height: 100%;
|
|
transition: transform 6s ease;
|
|
}
|
|
|
|
#polijeCarousel .carousel-item.active img {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
#polijeCarousel .carousel-caption {
|
|
bottom: 2rem;
|
|
background: rgba(0, 0, 0, 0.4);
|
|
backdrop-filter: blur(6px);
|
|
border-radius: .75rem;
|
|
padding: 1rem 1.5rem;
|
|
color: #fff;
|
|
}
|
|
|
|
#polijeCarousel .carousel-caption h5 {
|
|
font-size: 1.5rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
#polijeCarousel .carousel-caption p {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.carousel-control-prev-icon,
|
|
.carousel-control-next-icon {
|
|
filter: invert(1);
|
|
width: 2rem;
|
|
height: 2rem;
|
|
}
|
|
|
|
/* Jurusan Cards */
|
|
.premium-card {
|
|
border: none;
|
|
border-radius: 1rem;
|
|
overflow: hidden;
|
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
|
|
transition: transform .4s, box-shadow .4s;
|
|
}
|
|
|
|
.premium-card:hover {
|
|
transform: translateY(-8px);
|
|
box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
.premium-card .icon-circle {
|
|
width: 72px;
|
|
height: 72px;
|
|
background: #e8f1ff;
|
|
color: #007bff;
|
|
font-size: 2rem;
|
|
margin: 0 auto 1rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.premium-card .card-body {
|
|
padding: 2rem;
|
|
text-align: center;
|
|
background: #fff;
|
|
}
|
|
|
|
.premium-card .card-title {
|
|
font-family: 'Poppins', sans-serif;
|
|
font-size: 1.3rem;
|
|
font-weight: 600;
|
|
margin-bottom: .75rem;
|
|
color: #343a40;
|
|
}
|
|
|
|
.premium-card .card-text {
|
|
font-size: .95rem;
|
|
color: #6c757d;
|
|
margin-bottom: 1.25rem;
|
|
}
|
|
|
|
.premium-card .btn-outline-primary {
|
|
border-radius: .5rem;
|
|
padding: .5rem 1.5rem;
|
|
font-weight: 500;
|
|
transition: background .3s, color .3s;
|
|
}
|
|
|
|
.premium-card .btn-outline-primary:hover {
|
|
background: #007bff;
|
|
color: #fff;
|
|
}
|
|
|
|
/* Tips Blocks */
|
|
.premium-tip {
|
|
border-left: 4px solid #00bfff;
|
|
padding: 1.25rem;
|
|
border-radius: .5rem;
|
|
background: #f8f9fa;
|
|
transition: background .3s, transform .3s;
|
|
}
|
|
|
|
.premium-tip:hover {
|
|
background: #e3f2fd;
|
|
transform: translateY(-4px);
|
|
}
|
|
|
|
.premium-tip .bi {
|
|
font-size: 1.5rem;
|
|
color: #007bff;
|
|
margin-right: 1rem;
|
|
}
|
|
|
|
.premium-tip p {
|
|
display: inline-block;
|
|
margin: 0;
|
|
font-size: 1rem;
|
|
font-weight: 500;
|
|
color: #495057;
|
|
}
|
|
</style>
|
|
@endpush
|
|
|
|
@section('content')
|
|
{{-- Navbar terpisah --}}
|
|
@include('user.partials.navbar')
|
|
|
|
{{-- PREMIUM CONTENT --}}
|
|
<div class="container py-5">
|
|
<!-- Slider -->
|
|
<div id="polijeCarousel" class="carousel slide mb-5" data-bs-ride="carousel">
|
|
<!-- indikator -->
|
|
<div class="carousel-indicators">
|
|
<button data-bs-target="#polijeCarousel" data-bs-slide-to="0" class="active"></button>
|
|
<button data-bs-target="#polijeCarousel" data-bs-slide-to="1"></button>
|
|
<button data-bs-target="#polijeCarousel" data-bs-slide-to="2"></button>
|
|
</div>
|
|
<!-- isi carousel -->
|
|
<div class="carousel-inner">
|
|
<div class="carousel-item active">
|
|
<img src="{{ asset('images/slider2.jpg') }}" alt="Gedung Utama Polije">
|
|
<div class="carousel-caption">
|
|
<h5>Gedung Utama</h5>
|
|
<p>Fasilitas lengkap dan modern untuk kenyamanan belajar.</p>
|
|
</div>
|
|
</div>
|
|
<div class="carousel-item">
|
|
<img src="{{ asset('images/lab.jpeg') }}" alt="Laboratorium Canggih">
|
|
<div class="carousel-caption">
|
|
<h5>Laboratorium Canggih</h5>
|
|
<p>Ruang praktikum dengan teknologi terbaru.</p>
|
|
</div>
|
|
</div>
|
|
<div class="carousel-item">
|
|
<img src="{{ asset('images/komputer.jpg') }}" alt="Kegiatan Mahasiswa">
|
|
<div class="carousel-caption">
|
|
<h5>Kegiatan Mahasiswa</h5>
|
|
<p>Event & organisasi yang memperkaya pengalaman kampus.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- controls -->
|
|
<button class="carousel-control-prev" type="button" data-bs-target="#polijeCarousel" data-bs-slide="prev">
|
|
<span class="carousel-control-prev-icon"></span>
|
|
</button>
|
|
<button class="carousel-control-next" type="button" data-bs-target="#polijeCarousel" data-bs-slide="next">
|
|
<span class="carousel-control-next-icon"></span>
|
|
</button>
|
|
</div>
|
|
|
|
<!-- Jurusan Premium -->
|
|
{{-- <section class="text-center mb-5">
|
|
<h2 class="section-title animate__animated animate__fadeInDown">Jurusan Unggulan Polije</h2>
|
|
<p class="text-muted mb-4">Setiap jurusan didukung fasilitas modern dan tenaga pengajar profesional.</p>
|
|
<div class="row g-4">
|
|
@php
|
|
$jurusan = [
|
|
['name' => 'Teknik', 'icon' => 'bi-gear', 'desc' => 'Inovasi dan rekayasa untuk masa depan.'],
|
|
[
|
|
'name' => 'Kesehatan',
|
|
'icon' => 'bi-heart-pulse',
|
|
'desc' => 'Pelayanan medis dengan teknologi terkini.',
|
|
],
|
|
[
|
|
'name' => 'Bahasa & Pariwisata',
|
|
'icon' => 'bi-translate',
|
|
'desc' => 'Eksplor budaya & komunikasi global.',
|
|
],
|
|
[
|
|
'name' => 'Peternakan',
|
|
'icon' => 'bi-droplet',
|
|
'desc' => 'Manajemen peternakan berkelanjutan.',
|
|
],
|
|
[
|
|
'name' => 'Teknik Pertanian',
|
|
'icon' => 'bi-tree',
|
|
'desc' => 'Solusi teknologi di bidang pertanian.',
|
|
],
|
|
[
|
|
'name' => 'Produksi Pertanian',
|
|
'icon' => 'bi-box-seam',
|
|
'desc' => 'Optimalisasi hasil tani melalui produksi.',
|
|
],
|
|
[
|
|
'name' => 'Manajemen Agribisnis',
|
|
'icon' => 'bi-graph-up',
|
|
'desc' => 'Strategi bisnis di sektor pertanian.',
|
|
],
|
|
[
|
|
'name' => 'Teknologi Informasi',
|
|
'icon' => 'bi-laptop',
|
|
'desc' => 'Digitalisasi dan pengembangan perangkat lunak.',
|
|
],
|
|
];
|
|
@endphp
|
|
@foreach ($jurusan as $d)
|
|
<div class="col-md-6 col-lg-4">
|
|
<div class="card premium-card animate__animated animate__zoomIn">
|
|
<div class="card-body">
|
|
<div class="icon-circle"><i class="bi {{ $d['icon'] }}"></i></div>
|
|
<h5 class="card-title">{{ $d['name'] }}</h5>
|
|
<p class="card-text">{{ $d['desc'] }}</p>
|
|
<a href="#" class="btn btn-outline-primary">Pelajari Lebih</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endforeach
|
|
</div>
|
|
</section> --}}
|
|
|
|
<!-- Tips Premium -->
|
|
<section class="mb-5">
|
|
<h2 class="section-title text-center animate__animated animate__fadeInLeft">Panduan Memilih Jurusan</h2>
|
|
<div class="row g-4 justify-content-center">
|
|
@php
|
|
$tips = [
|
|
['icon' => 'bi-stars', 'text' => 'Kenali passion & strengths kamu.'],
|
|
['icon' => 'bi-bar-chart-line', 'text' => 'Tinjau prospek karier jangka panjang.'],
|
|
['icon' => 'bi-person-lines-fill', 'text' => 'Konsultasi dengan mentor dan alumni.'],
|
|
['icon' => 'bi-question-circle', 'text' => 'Manfaatkan assessment online.'],
|
|
['icon' => 'bi-people', 'text' => 'Pilih sesuai visi dan nilai pribadimu.'],
|
|
];
|
|
@endphp
|
|
@foreach ($tips as $t)
|
|
<div class="col-md-6 col-lg-4">
|
|
<div class="premium-tip animate__animated animate__fadeInUp">
|
|
<i class="bi {{ $t['icon'] }}"></i>
|
|
<p>{{ $t['text'] }}</p>
|
|
</div>
|
|
</div>
|
|
@endforeach
|
|
</div>
|
|
</section>
|
|
</div>
|
|
@endsection
|
|
|
|
@push('dashboard-scripts')
|
|
<!-- Bootstrap JS Bundle -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
|
@endpush
|