641 lines
24 KiB
PHP
641 lines
24 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="id">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Khatulistiwa GeoPortal — Sistem Analisis Spasial Terpadu</title>
|
|
<meta name="description" content="Portal informasi spasial dan analisis geospasial terpadu Kota Pontianak. Mengintegrasikan infrastruktur wilayah dan peta sosio-demografis secara digital.">
|
|
<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=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;600;700;800&display=swap" rel="stylesheet">
|
|
<style>
|
|
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
|
|
|
:root {
|
|
--bg-main: #030712;
|
|
--bg-card: rgba(17, 24, 39, 0.75);
|
|
--border-card: rgba(255, 255, 255, 0.08);
|
|
--text-primary: #f3f4f6;
|
|
--text-muted: #9ca3af;
|
|
--text-dim: #6b7280;
|
|
|
|
--neon-blue: #00f2fe;
|
|
--neon-purple: #8b5cf6;
|
|
--neon-teal: #05faf0;
|
|
--neon-pink: #ec4899;
|
|
--neon-green: #10b981;
|
|
|
|
--glow-blue: rgba(0, 242, 254, 0.15);
|
|
--glow-purple: rgba(139, 92, 246, 0.15);
|
|
--glow-teal: rgba(5, 250, 240, 0.15);
|
|
}
|
|
|
|
html { scroll-behavior: smooth; }
|
|
body {
|
|
font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
|
|
background: var(--bg-main);
|
|
color: var(--text-primary);
|
|
min-height: 100vh;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
/* ── ADVANCED NEON BACKGROUND MESH ── */
|
|
.bg-mesh {
|
|
position: fixed; inset: 0; z-index: 0;
|
|
background:
|
|
radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.18) 0%, transparent 50%),
|
|
radial-gradient(circle at 90% 80%, rgba(0, 242, 254, 0.15) 0%, transparent 50%),
|
|
radial-gradient(circle at 50% 50%, rgba(5, 250, 240, 0.05) 0%, transparent 60%);
|
|
}
|
|
|
|
/* Animated background orbs */
|
|
.orb {
|
|
position: fixed; border-radius: 50%; filter: blur(100px);
|
|
pointer-events: none; animation: float-orb 15s ease-in-out infinite;
|
|
}
|
|
.orb-1 {
|
|
width: 600px; height: 600px;
|
|
background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
|
|
top: -300px; left: -150px;
|
|
animation-duration: 20s;
|
|
}
|
|
.orb-2 {
|
|
width: 500px; height: 500px;
|
|
background: radial-gradient(circle, rgba(0, 242, 254, 0.2) 0%, transparent 70%);
|
|
bottom: -200px; right: -100px;
|
|
animation-duration: 25s; animation-delay: -5s;
|
|
}
|
|
.orb-3 {
|
|
width: 400px; height: 400px;
|
|
background: radial-gradient(circle, rgba(236, 72, 153, 0.12) 0%, transparent 70%);
|
|
top: 35%; left: 45%;
|
|
animation-duration: 18s; animation-delay: -10s;
|
|
}
|
|
@keyframes float-orb {
|
|
0%, 100% { transform: translate(0, 0) scale(1); }
|
|
33% { transform: translate(50px, -40px) scale(1.08); }
|
|
66% { transform: translate(-40px, 30px) scale(0.92); }
|
|
}
|
|
|
|
/* Cybernetic Grid */
|
|
.bg-grid {
|
|
position: fixed; inset: 0; z-index: 0;
|
|
background-image:
|
|
linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
|
|
linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
|
|
background-size: 50px 50px;
|
|
}
|
|
|
|
/* ── LAYOUT ── */
|
|
.page { position: relative; z-index: 1; min-height: 100vh; display: flex; flex-col: column; }
|
|
|
|
/* ── NAVBAR ── */
|
|
.nav {
|
|
position: sticky; top: 0; z-index: 100;
|
|
padding: 20px 60px;
|
|
display: flex; align-items: center; justify-content: space-between;
|
|
background: rgba(3, 7, 18, 0.6);
|
|
backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
|
|
border-bottom: 1px solid var(--border-card);
|
|
}
|
|
.nav-brand {
|
|
display: flex; align-items: center; gap: 14px;
|
|
text-decoration: none;
|
|
}
|
|
.nav-logo {
|
|
width: 44px; height: 44px; border-radius: 14px;
|
|
background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
|
|
display: flex; align-items: center; justify-content: center;
|
|
box-shadow: 0 0 20px rgba(0, 242, 254, 0.35);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
}
|
|
.nav-logo svg {
|
|
width: 24px; height: 24px; fill: #fff;
|
|
}
|
|
.nav-name {
|
|
font-family: 'Space Grotesk', sans-serif;
|
|
font-size: 20px; font-weight: 700; color: var(--text-primary);
|
|
letter-spacing: -.5px;
|
|
}
|
|
.nav-sub { font-size: 11px; color: var(--text-muted); margin-top: 1px; letter-spacing: 0.5px; }
|
|
.nav-pill {
|
|
display: flex; align-items: center; gap: 8px;
|
|
padding: 8px 16px; border-radius: 99px;
|
|
background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.2);
|
|
font-size: 11px; font-weight: 700; color: #34d399; letter-spacing: .08em;
|
|
}
|
|
.nav-pill-dot {
|
|
width: 8px; height: 8px; border-radius: 50%;
|
|
background: #10b981;
|
|
box-shadow: 0 0 8px #10b981;
|
|
animation: pulse-dot 2s ease-in-out infinite;
|
|
}
|
|
@keyframes pulse-dot {
|
|
0%, 100% { opacity: 1; transform: scale(1); }
|
|
50% { opacity: .5; transform: scale(0.8); }
|
|
}
|
|
|
|
/* ── HERO ── */
|
|
.hero {
|
|
padding: 90px 40px 50px;
|
|
text-align: center;
|
|
max-width: 880px; margin: 0 auto;
|
|
}
|
|
.hero-eyebrow {
|
|
display: inline-flex; align-items: center; gap: 8px;
|
|
padding: 8px 20px; border-radius: 99px;
|
|
background: rgba(0, 242, 254, 0.06); border: 1px solid rgba(0, 242, 254, 0.2);
|
|
font-size: 11px; font-weight: 700; color: var(--neon-blue); letter-spacing: .08em;
|
|
margin-bottom: 30px;
|
|
box-shadow: 0 0 15px rgba(0, 242, 254, 0.05);
|
|
animation: fade-up .7s ease both;
|
|
}
|
|
.hero-title {
|
|
font-family: 'Space Grotesk', sans-serif;
|
|
font-size: clamp(36px, 5.5vw, 68px);
|
|
font-weight: 800; line-height: 1.1; letter-spacing: -1.5px;
|
|
color: var(--text-primary);
|
|
animation: fade-up .7s ease .1s both;
|
|
}
|
|
.hero-title span {
|
|
background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 50%, var(--neon-pink) 100%);
|
|
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
.hero-sub {
|
|
margin-top: 24px;
|
|
font-size: 16px; line-height: 1.75; color: var(--text-muted); font-weight: 400;
|
|
max-width: 720px; margin-left: auto; margin-right: auto;
|
|
animation: fade-up .7s ease .2s both;
|
|
}
|
|
.hero-cta-hint {
|
|
margin-top: 40px;
|
|
display: flex; align-items: center; justify-content: center; gap: 10px;
|
|
font-size: 11px; font-weight: 700; color: var(--text-dim); letter-spacing: .15em;
|
|
text-transform: uppercase;
|
|
animation: fade-up .7s ease .3s both;
|
|
}
|
|
.hero-cta-hint::before,
|
|
.hero-cta-hint::after {
|
|
content: ''; flex: 1; max-width: 80px; height: 1px;
|
|
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08));
|
|
}
|
|
.hero-cta-hint::after { background: linear-gradient(90deg, rgba(255,255,255,0.08), transparent); }
|
|
@keyframes fade-up {
|
|
from { opacity: 0; transform: translateY(24px); }
|
|
to { opacity: 1; transform: translateY(0); }
|
|
}
|
|
|
|
/* ── PROJECT CARDS ── */
|
|
.cards-wrap {
|
|
max-width: 1200px; margin: 0 auto;
|
|
padding: 0 40px 90px;
|
|
display: grid; grid-template-columns: 1fr 1fr;
|
|
gap: 32px;
|
|
animation: fade-up .8s ease .4s both;
|
|
}
|
|
|
|
.project-card {
|
|
position: relative;
|
|
background: var(--bg-card);
|
|
backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
|
|
border-radius: 32px;
|
|
border: 1px solid var(--border-card);
|
|
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
|
|
overflow: hidden;
|
|
transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
|
|
color: inherit;
|
|
display: flex; flex-direction: column;
|
|
cursor: pointer;
|
|
}
|
|
.project-card:hover {
|
|
transform: translateY(-8px);
|
|
border-color: rgba(255, 255, 255, 0.16);
|
|
box-shadow: 0 20px 60px rgba(0, 242, 254, 0.05), 0 0 1px 1px rgba(255, 255, 255, 0.1) inset;
|
|
}
|
|
.project-card:hover .card-arrow { transform: translateX(6px); }
|
|
|
|
/* Top border glows */
|
|
.project-card::before {
|
|
content: '';
|
|
position: absolute; top: 0; left: 0; right: 0; height: 3px;
|
|
border-radius: 32px 32px 0 0;
|
|
z-index: 2;
|
|
}
|
|
.card-infra::before { background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple)); }
|
|
.card-welfare::before { background: linear-gradient(90deg, var(--neon-teal), var(--neon-green)); }
|
|
|
|
/* Glow on hover */
|
|
.project-card::after {
|
|
content: '';
|
|
position: absolute; inset: 0; border-radius: 32px;
|
|
opacity: 0; transition: opacity .4s ease;
|
|
pointer-events: none;
|
|
z-index: 1;
|
|
}
|
|
.card-infra::after { background: radial-gradient(circle at 50% 0%, rgba(0, 242, 254, 0.08) 0%, transparent 60%); }
|
|
.card-welfare::after { background: radial-gradient(circle at 50% 0%, rgba(5, 250, 240, 0.08) 0%, transparent 60%); }
|
|
.project-card:hover::after { opacity: 1; }
|
|
|
|
.card-inner { padding: 42px 42px 36px; flex: 1; display: flex; flex-direction: column; position: relative; z-index: 3; }
|
|
|
|
.card-badge {
|
|
display: inline-flex; align-items: center; gap: 6px;
|
|
padding: 6px 14px; border-radius: 99px;
|
|
font-size: 10px; font-weight: 800; letter-spacing: .12em;
|
|
text-transform: uppercase; margin-bottom: 24px;
|
|
width: fit-content;
|
|
}
|
|
.badge-infra { background: rgba(0, 242, 254, 0.08); color: var(--neon-blue); border: 1px solid rgba(0, 242, 254, 0.18); }
|
|
.badge-welfare { background: rgba(5, 250, 240, 0.08); color: var(--neon-teal); border: 1px solid rgba(5, 250, 240, 0.18); }
|
|
|
|
.card-icon-wrap {
|
|
width: 68px; height: 68px; border-radius: 22px;
|
|
display: flex; align-items: center; justify-content: center;
|
|
margin-bottom: 24px;
|
|
position: relative; overflow: hidden;
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
.icon-infra {
|
|
background: linear-gradient(135deg, rgba(0, 242, 254, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
|
|
box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
|
|
}
|
|
.icon-welfare {
|
|
background: linear-gradient(135deg, rgba(5, 250, 240, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
|
|
box-shadow: 0 0 15px rgba(5, 250, 240, 0.15);
|
|
}
|
|
.card-icon-wrap svg {
|
|
width: 30px; height: 30px;
|
|
}
|
|
|
|
.card-title {
|
|
font-family: 'Space Grotesk', sans-serif;
|
|
font-size: 28px; font-weight: 800; line-height: 1.2;
|
|
letter-spacing: -.5px; color: var(--text-primary);
|
|
margin-bottom: 14px;
|
|
}
|
|
.card-desc {
|
|
font-size: 14px; line-height: 1.8; color: var(--text-muted);
|
|
flex: 1; margin-bottom: 28px;
|
|
}
|
|
|
|
/* Feature tags */
|
|
.card-tags {
|
|
display: flex; flex-wrap: wrap; gap: 8px;
|
|
margin-bottom: 32px;
|
|
}
|
|
.tag {
|
|
display: flex; align-items: center; gap: 6px;
|
|
padding: 6px 14px; border-radius: 99px;
|
|
font-size: 11px; font-weight: 600;
|
|
background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05);
|
|
color: var(--text-muted);
|
|
transition: all 0.3s ease;
|
|
}
|
|
.project-card:hover .tag {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border-color: rgba(255, 255, 255, 0.08);
|
|
color: var(--text-primary);
|
|
}
|
|
.tag-dot {
|
|
width: 7px; height: 7px; border-radius: 50%;
|
|
}
|
|
.dot-blue { background: var(--neon-blue); box-shadow: 0 0 6px var(--neon-blue); }
|
|
.dot-purple { background: var(--neon-purple); box-shadow: 0 0 6px var(--neon-purple); }
|
|
.dot-teal { background: var(--neon-teal); box-shadow: 0 0 6px var(--neon-teal); }
|
|
.dot-pink { background: var(--neon-pink); box-shadow: 0 0 6px var(--neon-pink); }
|
|
.dot-green { background: var(--neon-green); box-shadow: 0 0 6px var(--neon-green); }
|
|
|
|
/* CTA Button */
|
|
.card-cta {
|
|
display: flex; align-items: center; justify-content: space-between;
|
|
padding: 16px 24px; border-radius: 18px;
|
|
font-size: 14px; font-weight: 700;
|
|
transition: all 0.3s ease;
|
|
border: none; cursor: pointer; width: 100%; text-decoration: none;
|
|
}
|
|
.cta-infra {
|
|
background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
|
|
color: #030712;
|
|
box-shadow: 0 6px 20px rgba(0, 242, 254, 0.25);
|
|
}
|
|
.cta-infra:hover {
|
|
box-shadow: 0 10px 30px rgba(0, 242, 254, 0.4);
|
|
transform: translateY(-2px);
|
|
}
|
|
.cta-welfare {
|
|
background: linear-gradient(135deg, var(--neon-teal) 0%, var(--neon-green) 100%);
|
|
color: #030712;
|
|
box-shadow: 0 6px 20px rgba(5, 250, 240, 0.25);
|
|
}
|
|
.cta-welfare:hover {
|
|
box-shadow: 0 10px 30px rgba(5, 250, 240, 0.4);
|
|
transform: translateY(-2px);
|
|
}
|
|
.card-arrow {
|
|
font-size: 18px; transition: transform .3s ease;
|
|
font-weight: 800;
|
|
}
|
|
|
|
/* Stats strip */
|
|
.card-stats {
|
|
display: grid; grid-template-columns: 1fr 1fr 1fr;
|
|
border-top: 1px solid var(--border-card);
|
|
background: rgba(3, 7, 18, 0.3);
|
|
position: relative; z-index: 3;
|
|
}
|
|
.stat-item {
|
|
padding: 20px 24px; text-align: center;
|
|
border-right: 1px solid var(--border-card);
|
|
}
|
|
.stat-item:last-child { border-right: none; }
|
|
.stat-n {
|
|
font-size: 10px; font-weight: 700; text-transform: uppercase;
|
|
letter-spacing: .1em; color: var(--text-dim); margin-bottom: 6px;
|
|
}
|
|
.stat-v {
|
|
font-family: 'Space Grotesk', sans-serif;
|
|
font-size: 24px; font-weight: 800; color: var(--text-primary);
|
|
}
|
|
.sv-blue { color: var(--neon-blue); text-shadow: 0 0 10px rgba(0, 242, 254, 0.2); }
|
|
.sv-purple { color: var(--neon-purple); text-shadow: 0 0 10px rgba(139, 92, 246, 0.2); }
|
|
.sv-teal { color: var(--neon-teal); text-shadow: 0 0 10px rgba(5, 250, 240, 0.2); }
|
|
.sv-green { color: var(--neon-green); text-shadow: 0 0 10px rgba(16, 185, 129, 0.2); }
|
|
|
|
/* ── BOTTOM INFO ── */
|
|
.bottom-info {
|
|
max-width: 1200px; margin: auto auto 0;
|
|
width: 100%;
|
|
padding: 40px 40px 60px;
|
|
display: flex; align-items: center; justify-content: space-between;
|
|
flex-wrap: wrap; gap: 20px;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.04);
|
|
position: relative; z-index: 10;
|
|
}
|
|
.info-left {
|
|
display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
|
|
}
|
|
.info-chip {
|
|
display: flex; align-items: center; gap: 8px;
|
|
padding: 10px 18px; border-radius: 99px;
|
|
background: rgba(255, 255, 255, 0.02);
|
|
border: 1px solid rgba(255, 255, 255, 0.05);
|
|
font-size: 12px; font-weight: 600; color: var(--text-muted);
|
|
backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
|
|
}
|
|
.info-chip-ic { font-size: 14px; }
|
|
.footer-text {
|
|
font-size: 12px; color: var(--text-dim); text-align: right;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* ── RESPONSIVE ── */
|
|
@media (max-width: 960px) {
|
|
.nav { padding: 16px 24px; }
|
|
.hero { padding: 60px 24px 30px; }
|
|
.cards-wrap { grid-template-columns: 1fr; padding: 0 24px 60px; gap: 24px; }
|
|
.bottom-info { padding: 30px 24px 40px; flex-direction: column; align-items: flex-start; }
|
|
.footer-text { text-align: left; }
|
|
.card-inner { padding: 32px 28px 28px; }
|
|
}
|
|
|
|
/* Mouse Glow Effect Spot */
|
|
.project-card .card-glow {
|
|
position: absolute;
|
|
width: 300px; height: 300px; border-radius: 50%;
|
|
filter: blur(80px); pointer-events: none;
|
|
opacity: 0; transition: opacity .4s ease;
|
|
transform: translate(-50%, -50%);
|
|
z-index: 1;
|
|
}
|
|
.project-card:hover .card-glow { opacity: 0.6; }
|
|
.glow-infra { background: radial-gradient(circle, rgba(0, 242, 254, 0.2) 0%, transparent 70%); }
|
|
.glow-welfare { background: radial-gradient(circle, rgba(5, 250, 240, 0.2) 0%, transparent 70%); }
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Backgrounds -->
|
|
<div class="bg-mesh"></div>
|
|
<div class="bg-grid"></div>
|
|
<div class="orb orb-1"></div>
|
|
<div class="orb orb-2"></div>
|
|
<div class="orb orb-3"></div>
|
|
|
|
<div class="page">
|
|
|
|
<!-- Navbar -->
|
|
<nav class="nav">
|
|
<a href="#" class="nav-brand">
|
|
<div class="nav-logo">
|
|
<svg viewBox="0 0 24 24">
|
|
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z"/>
|
|
</svg>
|
|
</div>
|
|
<div>
|
|
<div class="nav-name">EquatorGeo</div>
|
|
<div class="nav-sub">Portal Spasial Terpadu</div>
|
|
</div>
|
|
</a>
|
|
<div class="nav-pill">
|
|
<div class="nav-pill-dot"></div>
|
|
DASHBOARD LIVE & AKTIF
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Hero -->
|
|
<section class="hero">
|
|
<div class="hero-eyebrow">
|
|
🛰️ KHATULISTIWA GEO-INTELLIGENCE SYSTEM
|
|
</div>
|
|
<h1 class="hero-title">
|
|
Sistem Analisis Spasial<br>
|
|
<span>& Sosio-Demografi</span>
|
|
</h1>
|
|
<p class="hero-sub">
|
|
Platform geospasial terintegrasi untuk visualisasi penataan infrastruktur kota, pemetaan jaringan jalan,
|
|
dan analisis indikator kesejahteraan masyarakat Kota Pontianak secara akurat dan real-time.
|
|
</p>
|
|
<div class="hero-cta-hint">Pilih Modul Sistem</div>
|
|
</section>
|
|
|
|
<!-- Cards -->
|
|
<div class="cards-wrap">
|
|
|
|
<!-- PROJECT 1: Infrastruktur & Jaringan Spasial -->
|
|
<div class="project-card card-infra" id="card-spbu" onclick="window.location='spbu/index.php'">
|
|
<div class="card-glow glow-infra" id="glow-spbu"></div>
|
|
<div class="card-inner">
|
|
<div class="card-badge badge-infra">🛰️ MODUL INFRASTRUKTUR</div>
|
|
<div class="card-icon-wrap icon-infra">
|
|
<svg viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" class="text-cyan-400">
|
|
<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect>
|
|
<line x1="9" y1="3" x2="9" y2="21"></line>
|
|
<line x1="15" y1="3" x2="15" y2="21"></line>
|
|
<line x1="3" y1="9" x2="21" y2="9"></line>
|
|
<line x1="3" y1="15" x2="21" y2="15"></line>
|
|
</svg>
|
|
</div>
|
|
<h2 class="card-title">Infrastruktur &<br>Jaringan Transportasi</h2>
|
|
<p class="card-desc">
|
|
Modul analisis dan inventarisasi point-of-interest SPBU kota, pemetaan konektivitas
|
|
jalan arteri utama, serta manajemen hak batas parsil tanah berbasis data administratif wilayah.
|
|
</p>
|
|
<div class="card-tags">
|
|
<span class="tag"><span class="tag-dot dot-blue"></span> Dist. SPBU</span>
|
|
<span class="tag"><span class="tag-dot dot-purple"></span> Jaringan Jalan</span>
|
|
<span class="tag"><span class="tag-dot dot-teal"></span> Batas Parsil</span>
|
|
<span class="tag"><span class="tag-dot dot-pink"></span> Editor Spasial</span>
|
|
</div>
|
|
<a href="spbu/index.php" class="card-cta cta-infra" onclick="event.stopPropagation()">
|
|
<span>Masuk Sistem</span>
|
|
<span class="card-arrow">→</span>
|
|
</a>
|
|
</div>
|
|
<div class="card-stats">
|
|
<div class="stat-item">
|
|
<div class="stat-n">Outlet SPBU</div>
|
|
<div class="stat-v sv-blue" id="st-spbu">—</div>
|
|
</div>
|
|
<div class="stat-item">
|
|
<div class="stat-n">Segment Jalan</div>
|
|
<div class="stat-v sv-purple" id="st-jalan">—</div>
|
|
</div>
|
|
<div class="stat-item">
|
|
<div class="stat-n">Total Parsil</div>
|
|
<div class="stat-v sv-blue" id="st-parsil">—</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- PROJECT 2: SosioDemografi & Kesejahteraan -->
|
|
<div class="project-card card-welfare" id="card-geo" onclick="window.location='geososial/index.php'">
|
|
<div class="card-glow glow-welfare" id="glow-geo"></div>
|
|
<div class="card-inner">
|
|
<div class="card-badge badge-welfare">👥 ANALISIS SOSIODEMOGRAFI</div>
|
|
<div class="card-icon-wrap icon-welfare">
|
|
<svg viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" class="text-teal-400">
|
|
<path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path>
|
|
<circle cx="9" cy="7" r="4"></circle>
|
|
<path d="M23 21v-2a4 4 0 0 0-3-3.87"></path>
|
|
<path d="M16 3.13a4 4 0 0 1 0 7.75"></path>
|
|
</svg>
|
|
</div>
|
|
<h2 class="card-title">Kesejahteraan Sosial<br>& Demografis</h2>
|
|
<p class="card-desc">
|
|
Modul monitoring indeks kemiskinan perkotaan berbasis integrasi spasial rumah ibadah,
|
|
analisis sebaran kesejahteraan keluarga, serta deteksi daerah blank-spot bantuan sosial.
|
|
</p>
|
|
<div class="card-tags">
|
|
<span class="tag"><span class="tag-dot dot-teal"></span> Peta KK Miskin</span>
|
|
<span class="tag"><span class="tag-dot dot-green"></span> Sentra Rumah Ibadah</span>
|
|
<span class="tag"><span class="tag-dot dot-pink"></span> Blank Spot Info</span>
|
|
<span class="tag"><span class="tag-dot dot-purple"></span> Laporan Warga</span>
|
|
</div>
|
|
<a href="geososial/index.php" class="card-cta cta-welfare" onclick="event.stopPropagation()">
|
|
<span>Masuk Sistem</span>
|
|
<span class="card-arrow">→</span>
|
|
</a>
|
|
</div>
|
|
<div class="card-stats">
|
|
<div class="stat-item">
|
|
<div class="stat-n">Data KK</div>
|
|
<div class="stat-v sv-teal" id="st-kk">—</div>
|
|
</div>
|
|
<div class="stat-item">
|
|
<div class="stat-n">Ekstrem/Miskin</div>
|
|
<div class="stat-v sv-green" id="st-sm">—</div>
|
|
</div>
|
|
<div class="stat-item">
|
|
<div class="stat-n">Kecamatan</div>
|
|
<div class="stat-v sv-teal">6</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- Bottom Info -->
|
|
<footer class="bottom-info">
|
|
<div class="info-left">
|
|
<div class="info-chip">
|
|
<span class="info-chip-ic">📍</span>
|
|
Kota Pontianak, Kalimantan Barat
|
|
</div>
|
|
<div class="info-chip">
|
|
<span class="info-chip-ic">📅</span>
|
|
Tahun Pemetaan 2026
|
|
</div>
|
|
<div class="info-chip">
|
|
<span class="info-chip-ic">🛡️</span>
|
|
Node SSL Aman
|
|
</div>
|
|
</div>
|
|
<div class="footer-text">
|
|
Modul Portal Geospasial Khatulistiwa Terpadu<br>
|
|
Khatulistiwa GeoPortal © 2026 • Analisis Spasial Komprehensif
|
|
</div>
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
<script>
|
|
// Mouse-follow glow effect for each card
|
|
document.querySelectorAll('.project-card').forEach(card => {
|
|
const glow = card.querySelector('.card-glow');
|
|
card.addEventListener('mousemove', e => {
|
|
const rect = card.getBoundingClientRect();
|
|
const x = e.clientX - rect.left;
|
|
const y = e.clientY - rect.top;
|
|
glow.style.left = x + 'px';
|
|
glow.style.top = y + 'px';
|
|
});
|
|
});
|
|
|
|
// Load live stats from SPBU project
|
|
fetch('spbu/ambil_data.php')
|
|
.then(r => r.json())
|
|
.then(d => {
|
|
if (Array.isArray(d)) {
|
|
document.getElementById('st-spbu').textContent = d.length;
|
|
}
|
|
})
|
|
.catch(() => {});
|
|
|
|
fetch('spbu/ambil_jalan.php')
|
|
.then(r => r.json())
|
|
.then(d => {
|
|
if (Array.isArray(d) || (d && d.features)) {
|
|
const n = Array.isArray(d) ? d.length : d.features.length;
|
|
document.getElementById('st-jalan').textContent = n;
|
|
}
|
|
})
|
|
.catch(() => {});
|
|
|
|
fetch('spbu/ambil_parsil.php')
|
|
.then(r => r.json())
|
|
.then(d => {
|
|
if (Array.isArray(d) || (d && d.features)) {
|
|
const n = Array.isArray(d) ? d.length : d.features.length;
|
|
document.getElementById('st-parsil').textContent = n;
|
|
}
|
|
})
|
|
.catch(() => {});
|
|
|
|
// Load live stats from GeoSosial project
|
|
fetch('geososial/api/dashboard.php')
|
|
.then(r => r.json())
|
|
.then(j => {
|
|
if (!j.success) return;
|
|
const kpis = j.data?.kpis || {};
|
|
const kk = kpis.total_kk || 0;
|
|
const sm = kpis.sangat_miskin || 0;
|
|
document.getElementById('st-kk').textContent = kk > 999 ? (kk/1000).toFixed(1)+'K' : kk;
|
|
document.getElementById('st-sm').textContent = sm > 999 ? (sm/1000).toFixed(1)+'K' : sm;
|
|
})
|
|
.catch(() => {});
|
|
</script>
|
|
|
|
</body>
|
|
</html> |