Files
2026-06-13 12:01:09 +07:00

325 lines
9.5 KiB
PHP

<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SinergiSpasial | WebGIS Pontianak</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet">
<style>
:root {
--primary: #00d2ff;
--secondary: #3a7bd5;
--bg-dark: #0b0f19;
--surface: rgba(20, 27, 45, 0.6);
--surface-border: rgba(255, 255, 255, 0.1);
--text-main: #f8fafc;
--text-muted: #94a3b8;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
scroll-behavior: smooth;
}
body {
background-color: var(--bg-dark);
color: var(--text-main);
/* Membuat efek grid khas peta digital/GIS */
background-image:
linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
background-size: 30px 30px;
overflow-x: hidden;
}
/* --- Header & Nav (Glassmorphism) --- */
header {
position: fixed;
top: 0;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 5%;
background: rgba(11, 15, 25, 0.8);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--surface-border);
z-index: 1000;
}
.logo {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary);
text-shadow: 0 0 10px rgba(0, 210, 255, 0.4);
display: flex;
align-items: center;
gap: 10px;
}
nav a {
color: var(--text-main);
text-decoration: none;
margin-left: 30px;
font-size: 0.9rem;
font-weight: 400;
transition: color 0.3s;
}
nav a:hover {
color: var(--primary);
}
/* --- Global Section --- */
.section {
padding: 100px 5%;
text-align: center;
}
h2 {
font-size: 2.5rem;
margin-bottom: 20px;
background: -webkit-linear-gradient(right, var(--primary), var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
/* --- Hero Section --- */
.hero {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
padding: 0 5%;
}
/* Efek cahaya radial di background Hero */
.hero::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(58, 123, 213, 0.15) 0%, transparent 70%);
z-index: -1;
}
.hero-content {
max-width: 800px;
}
.hero h1 {
font-size: 3.5rem;
line-height: 1.2;
margin-bottom: 20px;
}
.hero p {
font-size: 1.1rem;
color: var(--text-muted);
margin-bottom: 40px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.btn {
display: inline-block;
padding: 15px 35px;
font-size: 1rem;
font-weight: 600;
color: #fff;
text-decoration: none;
background: linear-gradient(45deg, var(--secondary), var(--primary));
border-radius: 30px;
box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
transition: transform 0.3s, box-shadow 0.3s;
}
.btn:hover {
transform: translateY(-3px);
box-shadow: 0 15px 25px rgba(0, 210, 255, 0.5);
}
/* --- Cards (Fitur) --- */
.cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-top: 40px;
}
.card {
background: var(--surface);
backdrop-filter: blur(10px);
border: 1px solid var(--surface-border);
padding: 40px 20px;
border-radius: 20px;
transition: transform 0.3s, border-color 0.3s;
text-align: left;
}
.card:hover {
transform: translateY(-10px);
border-color: var(--primary);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.card h3 {
font-size: 1.5rem;
margin-bottom: 15px;
display: flex;
align-items: center;
gap: 10px;
}
.card p {
color: var(--text-muted);
font-size: 0.95rem;
line-height: 1.6;
}
/* --- Preview --- */
.preview {
width: 100%;
max-width: 900px;
border-radius: 15px;
box-shadow: 0 20px 50px rgba(0,0,0,0.5);
border: 1px solid var(--surface-border);
margin-top: 30px;
}
/* --- Flow (Alur Analisis) --- */
.flow {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 15px;
margin-top: 40px;
}
.flow-item {
background: var(--surface);
border: 1px solid var(--surface-border);
padding: 15px 25px;
border-radius: 30px;
font-weight: 600;
color: var(--primary);
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.flow-arrow {
color: var(--text-muted);
font-size: 1.2rem;
}
/* --- Footer --- */
footer {
text-align: center;
padding: 30px;
background: rgba(11, 15, 25, 0.9);
border-top: 1px solid var(--surface-border);
color: var(--text-muted);
font-size: 0.9rem;
}
/* Responsiveness */
@media (max-width: 768px) {
.hero h1 { font-size: 2.5rem; }
.flow { flex-direction: column; }
.flow-arrow { transform: rotate(90deg); }
nav { display: none; } /* Bisa ditambah hamburger menu nanti */
}
</style>
</head>
<body>
<header>
<div class="logo">
🗺️ SinergiSpasial
</div>
<nav>
<a href="#tentang">Tentang</a>
<a href="#fitur">Fitur</a>
<a href="#preview">Preview</a>
</nav>
</header>
<section class="hero">
<div class="hero-content">
<h1>
Sistem Informasi Geografis<br>
Berbasis Web untuk Analisis<br>
Sebaran Kemiskinan
</h1>
<p>
Membantu identifikasi wilayah bantuan berdasarkan jangkauan radius masjid di Kota Pontianak dengan pendekatan presisi geospasial.
</p>
<a href="login.php" class="btn">
Masuk ke Dashboard GIS
</a>
</div>
</section>
<section id="tentang" class="section">
<h2>Tentang Sistem</h2>
<p style="color: var(--text-muted); max-width: 700px; margin: 0 auto; line-height: 1.8;">
SinergiSpasial merupakan WebGIS yang dirancang untuk membantu visualisasi dan analisis sebaran penduduk miskin menggunakan pendekatan geospasial berbasis radius jangkauan masjid.
</p>
</section>
<section id="fitur" class="section">
<h2>Fitur Unggulan</h2>
<div class="cards">
<div class="card">
<h3>🕌 Data Masjid</h3>
<p>Manajemen titik koordinat dan lokasi masjid sebagai titik pusat distribusi bantuan.</p>
</div>
<div class="card">
<h3>👨‍👩‍👧‍👦 Data Penduduk</h3>
<p>Pemetaan data demografi penduduk miskin secara akurat berbasis lokasi (Point of Interest).</p>
</div>
<div class="card">
<h3>📍 Analisis Radius</h3>
<p>Pemrosesan buffer/radius secara otomatis untuk menentukan area jangkauan bantuan yang optimal.</p>
</div>
</div>
</section>
<section id="preview" class="section">
<h2>Preview Sistem</h2>
<div style="width: 100%; max-width: 900px; height: 500px; background: var(--surface); margin: 30px auto 0; border-radius: 15px; border: 1px solid var(--surface-border); display: flex; align-items: center; justify-content: center; color: var(--text-muted);">
[ Area Gambar Preview Map / Dashboard ]
</div>
</section>
<section class="section">
<h2>Alur Analisis Geospasial</h2>
<div class="flow">
<div class="flow-item">Pilih Masjid</div>
<div class="flow-arrow"></div>
<div class="flow-item">Tentukan Radius</div>
<div class="flow-arrow"></div>
<div class="flow-item">Hitung Intersect Jarak</div>
<div class="flow-arrow"></div>
<div class="flow-item">Identifikasi Penduduk</div>
<div class="flow-arrow"></div>
<div class="flow-item">Rekomendasi Bantuan</div>
</div>
</section>
<footer>
<p>© 2026 SinergiSpasial Sistem Informasi Geografis Kota Pontianak</p>
</footer>
</body>
</html>