import Navbar from "../components/Navbar"; import Footer from "../components/Footer"; import { useEffect, useRef } from "react"; import { useLocation } from "react-router-dom"; import { MapPin, Wifi, Network, Cog } from "lucide-react"; import { motion } from "framer-motion"; export default function Home() { const footerRef = useRef(null); const location = useLocation(); useEffect(() => { if (location.hash === "#footer") { footerRef.current?.scrollIntoView({ behavior: "smooth" }); } }, [location]); return (
{/* Navbar */} {/* Hero Section */}
WALANJA
TELEKOMUNIKASI

Always Connected

{/* Produk Section */}
{/* Animated Background */}

Produk

Solusi layanan jaringan kabel serat optik Point to Point dan Point to Multi Point dengan kapasitas tinggi, didukung infrastruktur yang handal melalui jaringan kabel serat optik kami.

{/* Card 1 */}

WTELL LastMile Connection

Solusi bagi penyedia layanan internet untuk melayani pelanggan Last Mile tanpa harus membangun jaringan fiber optic sendiri.

{/* Card 2 */}

WTELL Metro Link

Layanan jaringan serat optik Point to Point dan Point to Multi Point dengan kapasitas tinggi dan infrastruktur handal.

{/* Card 3 */}

WTELL EPC Solution

Menyediakan layanan Engineering, Procurement, Construction: Survey, Design, Deployment, Operation & Maintenance, FTIX.

{/* Cakupan Area Section */}
{/* Animated Overlay */}
{/* Title */}

Cakupan Area

Saat ini jaringan dan layanan{" "} WTELL telah berhasil menghadirkan internet di berbagai daerah di Kota Bandung hingga Desa 3T (Tertinggal, Terdepan, Terluar).

{/* Content */}
{/* Map */} Map Bandung {/* List Area */}

Fokus Layanan

  • 📍 Bandung Kota
  • 📍 Cimahi
  • 📍 Cileunyi
  • 📍 Ngamprah
  • 📍 Desa 3T sekitar Bandung
{/* Footer */}
); }