import { useEffect } from "react"; import { useNavigate } from "react-router-dom"; import { Eye, Zap, Shield, Clock } from "lucide-react"; import { Button } from "@/components/ui/button"; import { Card } from "@/components/ui/card"; import { supabase } from "@/integrations/supabase/client"; export default function Landing() { const navigate = useNavigate(); useEffect(() => { // Check if user is already logged in supabase.auth.getSession().then(({ data: { session } }) => { if (session) { navigate("/app"); } }); }, [navigate]); return
{/* Header */}
ALTly
{/* Hero Section */}

AI-Powered Alt Text
Made Simple

Generate perfect alt text for your images using Claude AI. Free, fast, and accessible for everyone.

{/* Features Section */}

Lightning Fast

Generate alt text in seconds using Claude's powerful AI. No waiting, no hassle.

Secure & Private

Your images are secure. Only you can see your generations and history.

20 Per Day

Generate up to 20 alt texts daily. Perfect for content creators and developers.

{/* CTA Section */}

Ready to Make Your Images Accessible?

Join others who are making the web more accessible, one image at a time.

{/* Footer */}
; }