import FloatingGem from '../components/PixelSprites/FloatingGem'; import PixelIcon from '../components/PixelIcon/PixelIcon'; import { API_BASE_URL } from '../config'; import './LandingPage.css'; function LandingPage() { const handleGoogleLogin = () => { window.location.href = `${API_BASE_URL}/auth/google`; }; const handleGitHubLogin = () => { window.location.href = `${API_BASE_URL}/auth/github`; }; return (
{/* Hero Section */}

DocNest

Create Together. In Real-Time.

Collaborative documents and Kanban boards that sync instantly.
Work with your team from anywhere, even offline.

{/* Features Section */}

Why DocNest?

{/* Footer CTA */}
); } function FeatureCard({ icon, title, description, color }: { icon: string; title: string; description: string; color: string; }) { return (

{title}

{description}

); } function GoogleIcon() { return ( ); } function GitHubIcon() { return ( ); } export default LandingPage;