import { useState } from 'react' import { motion } from 'framer-motion' import { ArrowRight } from 'lucide-react' import HeaderBar from '../components/landing/HeaderBar' import HeroSection from '../components/landing/HeroSection' import AboutSection from '../components/landing/AboutSection' import FeaturesSection from '../components/landing/FeaturesSection' import HowItWorksSection from '../components/landing/HowItWorksSection' import CommunitySection from '../components/landing/CommunitySection' import AnimatedSection from '../components/landing/AnimatedSection' import LoginModal from '../components/landing/LoginModal' import FooterSection from '../components/landing/FooterSection' export function LandingPage() { const [showLoginModal, setShowLoginModal] = useState(false) return (