41 lines
1.8 KiB
PHP
41 lines
1.8 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="id">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
<title>Jember Kamera Mangli - @yield('title')</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
<style>
|
|
body { font-family: 'Inter', sans-serif; }
|
|
.gradient-bg { background: linear-gradient(135deg, #edc039 0%, #edc039 100%); }
|
|
</style>
|
|
</head>
|
|
<body class="bg-gray-50">
|
|
<nav class="gradient-bg text-white shadow-lg">
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<div class="flex justify-between h-16">
|
|
<div class="flex items-center">
|
|
<a href="{{ route('landing') }}" class="text-xl font-bold inline-flex items-center gap-2">
|
|
<i class="bi bi-camera2"></i>
|
|
Jember Kamera Mangli
|
|
</a>
|
|
</div>
|
|
<div class="flex items-center space-x-4">
|
|
<a href="{{ route('landing') }}" class="hover:underline">Home</a>
|
|
<a href="#" class="hover:underline">Katalog</a>
|
|
<a href="{{ route('form') }}" class="hover:underline">Rekomendasi</a>
|
|
<a href="{{ route('dashboard') }}" class="hover:underline">Dashboard</a>
|
|
<a href="#" class="hover:underline">Login</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
<main class="py-8">
|
|
@yield('content')
|
|
</main>
|
|
</body>
|
|
</html>
|