mirror of
https://github.com/rekywhyd/gis_tugas.git
synced 2026-07-06 18:03:07 +00:00
323 lines
10 KiB
PHP
323 lines
10 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="id">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>GeoPortal - Dashboard WebGIS</title>
|
|
<!-- Google Fonts: Inter & Outfit -->
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800&display=swap" rel="stylesheet">
|
|
<!-- FontAwesome for Premium Icons -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
|
|
<style>
|
|
:root {
|
|
--bg-color: #0b0f19;
|
|
--card-bg: rgba(255, 255, 255, 0.03);
|
|
--card-border: rgba(255, 255, 255, 0.08);
|
|
--text-primary: #f3f4f6;
|
|
--text-secondary: #9ca3af;
|
|
--accent-primary: #3b82f6; /* Modern Blue */
|
|
--accent-point: #ec4899; /* Vibrant Pink/Red */
|
|
--accent-polyline: #8b5cf6; /* Vibrant Purple */
|
|
--accent-polygon: #10b981; /* Vibrant Green */
|
|
--glow-point: rgba(236, 72, 153, 0.15);
|
|
--glow-polyline: rgba(139, 92, 246, 0.15);
|
|
--glow-polygon: rgba(16, 185, 129, 0.15);
|
|
--glow-kesra: rgba(59, 130, 246, 0.15);
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background-color: var(--bg-color);
|
|
color: var(--text-primary);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
overflow-x: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
/* Abstract Premium Background Shapes */
|
|
body::before, body::after {
|
|
content: '';
|
|
position: absolute;
|
|
width: 400px;
|
|
height: 400px;
|
|
border-radius: 50%;
|
|
filter: blur(150px);
|
|
z-index: -1;
|
|
opacity: 0.4;
|
|
}
|
|
body::before {
|
|
top: -100px;
|
|
left: -100px;
|
|
background: radial-gradient(circle, var(--accent-polyline) 0%, transparent 80%);
|
|
}
|
|
body::after {
|
|
bottom: -100px;
|
|
right: -100px;
|
|
background: radial-gradient(circle, var(--accent-primary) 0%, transparent 80%);
|
|
}
|
|
|
|
header {
|
|
padding: 3rem 2rem 1rem 2rem;
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
font-family: 'Outfit', sans-serif;
|
|
font-size: 2.8rem;
|
|
font-weight: 800;
|
|
letter-spacing: -0.05em;
|
|
background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.subtitle {
|
|
font-size: 1.1rem;
|
|
color: var(--text-secondary);
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
main {
|
|
flex-grow: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.grid-container {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
|
|
gap: 1.5rem;
|
|
width: 100%;
|
|
max-width: 1200px;
|
|
}
|
|
|
|
.card {
|
|
background: var(--card-bg);
|
|
border: 1px solid var(--card-border);
|
|
border-radius: 20px;
|
|
padding: 2.5rem 2rem;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
color: inherit;
|
|
backdrop-filter: blur(12px);
|
|
-webkit-backdrop-filter: blur(12px);
|
|
transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
|
|
position: relative;
|
|
overflow: hidden;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
|
|
opacity: 0;
|
|
transition: opacity 0.4s ease;
|
|
}
|
|
|
|
.card:hover::before {
|
|
opacity: 1;
|
|
}
|
|
|
|
/* Specific card color themes */
|
|
.card-kesra {
|
|
--theme-color: var(--accent-primary);
|
|
--theme-glow: var(--glow-kesra);
|
|
}
|
|
.card-point {
|
|
--theme-color: var(--accent-point);
|
|
--theme-glow: var(--glow-point);
|
|
}
|
|
.card-polyline {
|
|
--theme-color: var(--accent-polyline);
|
|
--theme-glow: var(--glow-polyline);
|
|
}
|
|
.card-polygon {
|
|
--theme-color: var(--accent-polygon);
|
|
--theme-glow: var(--glow-polygon);
|
|
}
|
|
|
|
.card:hover {
|
|
transform: translateY(-8px);
|
|
border-color: var(--theme-color);
|
|
box-shadow: 0 20px 40px -15px var(--theme-glow);
|
|
}
|
|
|
|
.icon-wrapper {
|
|
width: 80px;
|
|
height: 80px;
|
|
border-radius: 50%;
|
|
background: rgba(255, 255, 255, 0.03);
|
|
border: 1px solid var(--card-border);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-bottom: 1.5rem;
|
|
font-size: 2rem;
|
|
color: var(--theme-color);
|
|
transition: all 0.4s ease;
|
|
}
|
|
|
|
.card:hover .icon-wrapper {
|
|
background: var(--theme-color);
|
|
color: var(--bg-color);
|
|
box-shadow: 0 0 20px var(--theme-color);
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.card h2 {
|
|
font-family: 'Outfit', sans-serif;
|
|
font-size: 1.6rem;
|
|
font-weight: 700;
|
|
margin-bottom: 0.75rem;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.card:hover h2 {
|
|
color: var(--theme-color);
|
|
}
|
|
|
|
.card p {
|
|
font-size: 0.95rem;
|
|
color: var(--text-secondary);
|
|
line-height: 1.5;
|
|
margin-bottom: 2rem;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
padding: 0.75rem 1.5rem;
|
|
border-radius: 12px;
|
|
font-size: 0.9rem;
|
|
font-weight: 600;
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border: 1px solid var(--card-border);
|
|
color: var(--text-primary);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.card:hover .btn {
|
|
background: var(--theme-color);
|
|
color: var(--bg-color);
|
|
border-color: var(--theme-color);
|
|
}
|
|
|
|
footer {
|
|
padding: 2rem;
|
|
text-align: center;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.05);
|
|
font-size: 0.85rem;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
footer a {
|
|
color: var(--accent-primary);
|
|
text-decoration: none;
|
|
}
|
|
|
|
footer a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
h1 {
|
|
font-size: 2.2rem;
|
|
}
|
|
.grid-container {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<header>
|
|
<h1>Sistem Informasi Geografis</h1>
|
|
<p class="subtitle">Platform visualisasi data pemetaan berbasis spasial.</p>
|
|
</header>
|
|
|
|
<main>
|
|
<div class="grid-container">
|
|
<!-- Kesra Card -->
|
|
<a href="http://wg84wo0wsocccs4csg8w88ks.203.24.51.230.sslip.io/" class="card card-kesra" target="_blank" rel="noopener noreferrer">
|
|
<div class="icon-wrapper">
|
|
<i class="fa-solid fa-hand-holding-heart"></i>
|
|
</div>
|
|
<h2>WebGIS Kesra</h2>
|
|
<p>Sistem Informasi Geografis terpadu untuk mendata, memetakan, dan menyalurkan bantuan kepada warga yang membutuhkan melalui jaringan penyalur yang tepercaya.</p>
|
|
<div class="btn">
|
|
Buka Modul <i class="fa-solid fa-arrow-right-from-bracket"></i>
|
|
</div>
|
|
</a>
|
|
|
|
<!-- Point Card -->
|
|
<a href="point/" class="card card-point">
|
|
<div class="icon-wrapper">
|
|
<i class="fa-solid fa-location-dot"></i>
|
|
</div>
|
|
<h2>GIS Point</h2>
|
|
<p>Visualisasi dan pengelolaan data lokasi berbentuk titik koordinat seperti tempat wisata, gedung, atau fasilitas umum.</p>
|
|
<div class="btn">
|
|
Buka Modul <i class="fa-solid fa-arrow-right"></i>
|
|
</div>
|
|
</a>
|
|
|
|
<!-- Polyline Card -->
|
|
<a href="polyline/" class="card card-polyline">
|
|
<div class="icon-wrapper">
|
|
<i class="fa-solid fa-route"></i>
|
|
</div>
|
|
<h2>GIS Polyline</h2>
|
|
<p>Visualisasi jalur, rute jalan, batas garis lintang, sungai, atau jaringan transportasi menggunakan garis penghubung.</p>
|
|
<div class="btn">
|
|
Buka Modul <i class="fa-solid fa-arrow-right"></i>
|
|
</div>
|
|
</a>
|
|
|
|
<!-- Polygon Card -->
|
|
<a href="polygon/" class="card card-polygon">
|
|
<div class="icon-wrapper">
|
|
<i class="fa-solid fa-draw-polygon"></i>
|
|
</div>
|
|
<h2>GIS Polygon</h2>
|
|
<p>Visualisasi wilayah, area zonasi teritorial, batas administrasi kelurahan, daerah rawan, maupun luasan lahan.</p>
|
|
<div class="btn">
|
|
Buka Modul <i class="fa-solid fa-arrow-right"></i>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
</main>
|
|
|
|
<footer>
|
|
<p>© 2026 WebGIS Application. Deployed with <i class="fa-solid fa-heart" style="color: #ec4899;"></i> using Coolify.</p>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|