329 lines
11 KiB
HTML
329 lines
11 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="id">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Portal Aplikasi WebGIS</title>
|
|
<style>
|
|
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700;800&display=swap');
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html, body {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow-x: hidden;
|
|
background: #02040A;
|
|
color: #E6F1FF;
|
|
}
|
|
|
|
body {
|
|
font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: flex-start;
|
|
padding: 60px 20px 40px;
|
|
background-image:
|
|
radial-gradient(circle at top left, rgba(13, 110, 253, 0.12), transparent 20%),
|
|
radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.12), transparent 18%);
|
|
}
|
|
|
|
.container {
|
|
width: 100%;
|
|
max-width: 1100px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.header {
|
|
text-align: center;
|
|
margin-bottom: 70px;
|
|
}
|
|
|
|
.header h1 {
|
|
font-size: 44px;
|
|
font-weight: 800;
|
|
letter-spacing: -0.08em;
|
|
margin-bottom: 12px;
|
|
color: #A5F3FC;
|
|
}
|
|
|
|
.header p {
|
|
font-size: 16px;
|
|
color: #94A3B8;
|
|
margin-bottom: 28px;
|
|
letter-spacing: 0.02em;
|
|
}
|
|
|
|
.header .subtitle {
|
|
font-size: 14px;
|
|
color: #7DD3FC;
|
|
margin-bottom: 18px;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.developer-info {
|
|
display: inline-flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 18px 28px;
|
|
border: 1px solid rgba(148, 163, 184, 0.18);
|
|
border-radius: 14px;
|
|
background: rgba(15, 23, 42, 0.92);
|
|
box-shadow: 0 16px 40px rgba(20, 34, 74, 0.35);
|
|
}
|
|
|
|
.developer-info .name {
|
|
font-size: 20px;
|
|
font-weight: 700;
|
|
color: #F8FAFC;
|
|
}
|
|
|
|
.developer-info .nim {
|
|
font-size: 14px;
|
|
color: #94A3B8;
|
|
}
|
|
|
|
.apps-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
|
|
gap: 28px;
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
.app-card {
|
|
background: #02040A;
|
|
border: 1px solid rgba(94, 234, 212, 0.15);
|
|
border-radius: 4px;
|
|
overflow: hidden;
|
|
box-shadow: inset 0 0 0 1px rgba(94, 234, 212, 0.05), 0 12px 34px rgba(0, 0, 0, 0.4);
|
|
transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
|
|
text-decoration: none;
|
|
color: inherit;
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
position: relative;
|
|
}
|
|
|
|
.app-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(56, 189, 248, 0.08));
|
|
opacity: 0;
|
|
transition: opacity 0.25s ease;
|
|
}
|
|
|
|
.app-card:hover {
|
|
transform: translateY(-8px);
|
|
border-color: rgba(56, 189, 248, 0.35);
|
|
box-shadow: 0 18px 42px rgba(15, 23, 42, 0.55);
|
|
}
|
|
|
|
.app-card:hover::before {
|
|
opacity: 1;
|
|
}
|
|
|
|
.app-card-header {
|
|
height: 110px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 50px;
|
|
font-weight: 800;
|
|
color: #E6F1FF;
|
|
letter-spacing: 0.05em;
|
|
border-bottom: 1px solid rgba(148, 163, 184, 0.12);
|
|
}
|
|
|
|
.app-card:nth-child(1) .app-card-header { background: linear-gradient(135deg, #065F46 0%, #10B981 100%); }
|
|
.app-card:nth-child(2) .app-card-header { background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%); }
|
|
.app-card:nth-child(3) .app-card-header { background: linear-gradient(135deg, #831843 0%, #F97316 100%); }
|
|
.app-card:nth-child(4) .app-card-header { background: linear-gradient(135deg, #0F172A 0%, #475569 100%); }
|
|
|
|
.app-card-content {
|
|
padding: 22px 22px 24px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
flex: 1;
|
|
}
|
|
|
|
.app-card-title {
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
color: #F8FAFC;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
}
|
|
|
|
.app-card-description {
|
|
font-size: 14px;
|
|
color: #94A3B8;
|
|
line-height: 1.8;
|
|
flex: 1;
|
|
white-space: pre-line;
|
|
}
|
|
|
|
.app-card-link {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: fit-content;
|
|
gap: 8px;
|
|
color: #7DD3FC;
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
|
|
padding: 8px 14px;
|
|
border: 1px solid rgba(125, 211, 252, 0.18);
|
|
border-radius: 4px;
|
|
background: rgba(15, 23, 42, 0.88);
|
|
}
|
|
|
|
.app-card-link:hover {
|
|
color: #38BDF8;
|
|
transform: translateX(2px);
|
|
background: rgba(56, 189, 248, 0.08);
|
|
border-color: rgba(56, 189, 248, 0.25);
|
|
}
|
|
|
|
.footer {
|
|
text-align: center;
|
|
color: #94A3B8;
|
|
opacity: 0.9;
|
|
margin-top: 24px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
@keyframes fadeInDown {
|
|
from { opacity: 0; transform: translateY(-24px); }
|
|
to { opacity: 1; transform: translateY(0); }
|
|
}
|
|
|
|
@keyframes fadeInUp {
|
|
from { opacity: 0; transform: translateY(24px); }
|
|
to { opacity: 1; transform: translateY(0); }
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
body {
|
|
padding: 24px 14px;
|
|
}
|
|
|
|
.header h1 {
|
|
font-size: 34px;
|
|
}
|
|
|
|
.header p {
|
|
font-size: 15px;
|
|
}
|
|
|
|
.developer-info {
|
|
width: 100%;
|
|
padding: 16px 22px;
|
|
}
|
|
|
|
.apps-grid {
|
|
grid-template-columns: 1fr;
|
|
gap: 22px;
|
|
}
|
|
|
|
.app-card-header {
|
|
height: 110px;
|
|
font-size: 48px;
|
|
}
|
|
|
|
.app-card-content {
|
|
padding: 24px 20px 26px;
|
|
}
|
|
|
|
.app-card-title {
|
|
font-size: 15px;
|
|
}
|
|
|
|
.app-card-description {
|
|
font-size: 13px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<!-- Header -->
|
|
<div class="header">
|
|
<div class="subtitle">Landing Page Sistem Informasi Geografis</div>
|
|
<h1>Aplikasi WebGIS</h1>
|
|
<p>Koleksi Sistem Informasi Geospasial</p>
|
|
<div class="developer-info">
|
|
<div class="name">Muhammad Darin Noah</div>
|
|
<div class="nim">NIM: D1041230189</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Apps Grid -->
|
|
<div class="apps-grid">
|
|
<!-- App 1: SPBU dan Layer Control -->
|
|
<a href="./WebGIS_SPBU_dan_LayerControl/index.html" class="app-card">
|
|
<div class="app-card-header">🛢️</div>
|
|
<div class="app-card-content">
|
|
<div class="app-card-title">SPBU & Kontrol Layer</div>
|
|
<div class="app-card-description">
|
|
Visualisasi stasiun pengisian bahan bakar (SPBU) dengan kontrol layer interaktif. Kelola layer peta untuk melihat berbagai jenis stasiun pengisian dan lokasi mereka di seluruh wilayah.
|
|
</div>
|
|
<div class="app-card-link">Buka Aplikasi</div>
|
|
</div>
|
|
</a>
|
|
|
|
<!-- App 2: Choropleth Data -->
|
|
<a href="./WebGIS_ChloroplethData_ImportGeoJSON_FromArcMap/index.html" class="app-card">
|
|
<div class="app-card-header">🗺️</div>
|
|
<div class="app-card-content">
|
|
<div class="app-card-title">Data Choropleth</div>
|
|
<div class="app-card-description">
|
|
Pemetaan choropleth dengan data GeoJSON yang diimpor dari ArcMap. Visualisasikan batas administrasi dengan data berkode warna menunjukkan informasi dan statistik tingkat kecamatan.
|
|
</div>
|
|
<div class="app-card-link">Buka Aplikasi</div>
|
|
</div>
|
|
</a>
|
|
|
|
<!-- App 3: Road & Building Management -->
|
|
<a href="./WebGIS_ManajemenJalan_ManajemenHakBangunan/index.html" class="app-card">
|
|
<div class="app-card-header">🏗️</div>
|
|
<div class="app-card-content">
|
|
<div class="app-card-title">Manajemen Jalan & Bangunan</div>
|
|
<div class="app-card-description">
|
|
Sistem manajemen komprehensif untuk infrastruktur perkotaan. Lacak dan kelola jaringan jalan serta hak bangunan dengan informasi atribut terperinci dan analisis spasial.
|
|
</div>
|
|
<div class="app-card-link">Buka Aplikasi</div>
|
|
</div>
|
|
</a>
|
|
|
|
<!-- App 4: Poverty Mapping -->
|
|
<a href="./WebGIS_PovertyMapping/public/index.html" class="app-card">
|
|
<div class="app-card-header">🏘️</div>
|
|
<div class="app-card-content">
|
|
<div class="app-card-title">Pemetaan Kemiskinan & Logistik</div>
|
|
<div class="app-card-description">
|
|
Sistem manajemen penilaian kemiskinan dan distribusi sembako yang canggih. Pantau rumah tangga, verifikasi indikator kemiskinan, dan kelola logistik distribusi bantuan dengan verifikasi admin.
|
|
</div>
|
|
<div class="app-card-link">Buka Aplikasi</div>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
<!-- Footer -->
|
|
<div class="footer">
|
|
<p>© 2026 Aplikasi WebGIS. Semua hak dilindungi.</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|