diff --git a/src/app/page.tsx b/src/app/page.tsx index 9a6b3adb..86b30c62 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -47,7 +47,8 @@ export default function Home() { useEffect(() => { const handleScroll = () => { const scrollTop = window.scrollY; - const docHeight = document.documentElement.scrollHeight - window.innerHeight; + const docHeight = + document.documentElement.scrollHeight - window.innerHeight; const progress = docHeight > 0 ? (scrollTop / docHeight) * 100 : 0; setScrollProgress(progress); }; @@ -59,32 +60,38 @@ export default function Home() { const features = [ { title: "Real-time collaborative discussions", - description: "Share questions, answers, and classroom updates instantly across study groups.", + description: + "Share questions, answers, and classroom updates instantly across study groups.", icon: MessageCircle, }, { title: "Smart classroom management", - description: "Organize learning spaces, schedules, and teacher workflows with ease.", + description: + "Organize learning spaces, schedules, and teacher workflows with ease.", icon: LayoutGrid, }, { title: "Notes and resource sharing", - description: "Keep study materials, highlights, and shared guides organized in one hub.", + description: + "Keep study materials, highlights, and shared guides organized in one hub.", icon: Clipboard, }, { title: "Learning roadmaps and guidance", - description: "Follow curated study paths that keep learners focused on milestones.", + description: + "Follow curated study paths that keep learners focused on milestones.", icon: Map, }, { title: "AI-powered doubt solving", - description: "Get instant, context-aware answers to questions with smart AI support.", + description: + "Get instant, context-aware answers to questions with smart AI support.", icon: Activity, }, { title: "Organized study collaboration", - description: "Coordinate projects, peer review, and group work with clear tools and structure.", + description: + "Coordinate projects, peer review, and group work with clear tools and structure.", icon: Users, }, ]; @@ -92,53 +99,61 @@ export default function Home() { const howItWorks = [ { title: "Join or create a classroom", - description: "Teachers set up rooms, students join using invite codes." + description: "Teachers set up rooms, students join using invite codes.", }, { title: "Ask doubts instantly", - description: "Post questions using text or image and get AI + peer help." + description: "Post questions using text or image and get AI + peer help.", }, { title: "Get clear answers & insights", - description: "AI explanations, teacher guidance, and analytics all in one place." - } + description: + "AI explanations, teacher guidance, and analytics all in one place.", + }, ]; const testimonials = [ { name: "Aarav Sharma", role: "B.Tech Student", - text: "DoubtDesk made it so easy to clear my doubts during exam prep. The AI explanations are super clear." + text: "DoubtDesk made it so easy to clear my doubts during exam prep. The AI explanations are super clear.", }, { name: "Neha Verma", role: "CS Student", - text: "No more messy WhatsApp groups. Everything is structured and easy to follow." + text: "No more messy WhatsApp groups. Everything is structured and easy to follow.", }, { name: "Rohit Mehta", role: "Teaching Assistant", - text: "Analytics help me understand where students struggle the most." - } + text: "Analytics help me understand where students struggle the most.", + }, ]; const handleSignOut = async () => { - await signOut({ redirectUrl: '/' }); + await signOut({ redirectUrl: "/" }); }; return ( -
- Built for collaborative classrooms, instant doubt solving, and smarter learning. + Built for collaborative classrooms, instant doubt solving, and + smarter learning.
- Built for modern study teams, DoubtDesk blends AI-powered doubt solving, shared resources, and smart classroom flows into a single polished platform. + Built for modern study teams, DoubtDesk blends AI-powered doubt + solving, shared resources, and smart classroom flows into a + single polished platform.