"use client"; import Link from "next/link"; import dynamic from 'next/dynamic'; // Dynamically import DemoMap (client-side only) const DemoMap = dynamic(() => import('@/components/demo/DemoMap'), { ssr: false, loading: () => (

Loading interactive demo...

), }); export default function LandingPage() { return (
{/* Header/Navigation */}

Location Tracker

Login
{/* Hero Section */}

Real-Time GPS Location Tracking

Track multiple devices in real-time with our powerful MQTT-based location tracking system. Monitor your fleet, family, or assets with precision and ease.

Sign Up Free Login
{/* Features Section */}

Powerful Features

{/* Feature 1 */}

Real-Time Updates

Live location updates via MQTT protocol with automatic 5-second refresh intervals.

{/* Feature 2 */}

Interactive Map

OpenStreetMap integration with multiple layers, movement paths, and device markers.

{/* Feature 3 */}

Time Filtering

Filter locations by time range with quick filters (1h, 3h, 6h) or custom date ranges.

{/* Feature 4 */}

Multi-Device Support

Track unlimited devices with color-coded markers and individual device filtering.

{/* Feature 5 */}

Admin Controls

Comprehensive admin panel for device management, user access, and MQTT configuration.

{/* Feature 6 */}

SQLite Storage

Dual-database system for high-performance location storage with automatic cleanup.

{/* Live Demo Section */}

See It In Action

Watch live as 3 demo devices move through Munich in real-time. This is exactly how your own devices will appear on the map!

City Tour
Olympiapark Route
Isar Tour

💡 Devices update every 3 seconds - just like real-time tracking!

{/* Demo Feature 1 */}

Device Analytics

{/* Demo Feature 2 - Admin Panel Screenshot */}
{/* Desktop: Show full screenshot */}
Admin Panel Dashboard
{/* Mobile: Show cropped/centered portion */}
Admin Panel Dashboard
{/* CTA Section */}

Ready to Start Tracking?

Create your free account or log in to access the real-time map and start monitoring your devices instantly.

Create Free Account Login
{/* Footer */}
); }