import Link from 'next/link' import { Button } from '@/components/ui/button' import { Monitor, Shield, Zap, Users, Download, ArrowRight, Keyboard, Globe, Clock } from 'lucide-react' export default function HomePage() { const features = [ { icon: Zap, title: 'Low Latency', description: 'WebRTC-powered connections for real-time screen sharing and control with minimal delay.', }, { icon: Shield, title: 'Secure by Design', description: 'End-to-end encryption with session codes that expire. Your data never touches our servers.', }, { icon: Keyboard, title: 'Full Control', description: 'Complete mouse and keyboard control. Multiple monitor support and file transfer.', }, { icon: Globe, title: 'Works Everywhere', description: 'Connect from any browser. The agent runs on Windows, macOS, and Linux.', }, { icon: Users, title: 'Team Ready', description: 'Manage multiple machines, track session history, and collaborate with your team.', }, { icon: Clock, title: 'Session History', description: 'Complete audit trail of all remote sessions with timestamps and duration.', }, ] return (
{/* Navigation */} {/* Hero Section */}
Secure Remote Access

Remote Desktop Made Simple

Connect to and control remote machines securely. Perfect for IT support, system administration, and helping friends and family.

{/* Background decoration */}
{/* How it works */}

How It Works

Get connected in three simple steps

1

Install the Agent

Download and run our lightweight agent on the remote machine

2

Get a Session Code

The agent generates a 6-digit code that expires in 10 minutes

3

Connect & Control

Enter the code in your dashboard and take full control

{/* Features Grid */}

Built for IT Professionals

Everything you need for efficient remote support

{features.map((feature, index) => (

{feature.title}

{feature.description}

))}
{/* CTA Section */}

Ready to connect?

Sign in to your account or contact your administrator for an invite.

{/* Footer */}
) }