2026-04-03 05:08:41 +07:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="id">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<title>@yield('title', 'Persegi') — Organisasi Pemuda Desa Karangdadap</title>
|
|
|
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
|
|
|
</head>
|
|
|
|
|
<body class="bg-gray-50 text-gray-800 font-sans">
|
|
|
|
|
|
|
|
|
|
<nav class="bg-green-700 text-white shadow">
|
|
|
|
|
<div class="max-w-5xl mx-auto px-4 py-3 flex items-center justify-between">
|
|
|
|
|
<a href="{{ route('home') }}" class="font-bold text-xl tracking-wide">🌿 Persegi</a>
|
|
|
|
|
<div class="flex gap-6 text-sm font-medium">
|
|
|
|
|
<a href="{{ route('home') }}" class="hover:underline">Beranda</a>
|
|
|
|
|
<a href="{{ route('tentang') }}" class="hover:underline">Tentang</a>
|
|
|
|
|
<a href="{{ route('kegiatan') }}" class="hover:underline">Kegiatan</a>
|
2026-04-03 05:18:34 +07:00
|
|
|
<a href="{{ route('blog') }}" class="hover:underline">Blog</a>
|
2026-04-03 05:33:21 +07:00
|
|
|
<a href="{{ route('kontak') }}" class="hover:underline">Kontak</a>
|
2026-04-03 05:08:41 +07:00
|
|
|
<a href="{{ route('filament.admin.auth.login') }}" class="bg-white text-green-700 px-3 py-1 rounded hover:bg-green-50">Login</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
|
|
<main class="max-w-5xl mx-auto px-4 py-10">
|
|
|
|
|
@yield('content')
|
|
|
|
|
</main>
|
|
|
|
|
|
|
|
|
|
<footer class="bg-green-800 text-white text-center text-sm py-6 mt-16">
|
|
|
|
|
<p>© {{ date('Y') }} Persegi — Organisasi Pemuda Desa Karangdadap, Kalibagor, Banyumas</p>
|
|
|
|
|
</footer>
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|