"use client";
import Link from "next/link";
import LandingPageChatBot from "@/app/components/landing-page-chat-bot";
/**
* LandingPage Component
* Main landing page for PlayGo AI educational platform
* Features a chatbot, feature highlights, statistics, and footer
*/
export default function LandingPage() {
return (
{/* Interactive ChatBot Section */}
{/* Features Grid Section - Displays 4 key platform features with icons */}
Build with our powerful learning tools
Interactive Learning
Engage with AI-powered quizzes, projects, and virtual labs
Diverse Subjects
Explore topics from STEM to humanities with expert AI guidance
Personalized Path
Adaptive learning tailored to your unique pace and style
Progress Tracking
Monitor learning outcomes with detailed analytics
{/* Statistics Section - Displays key metrics about platform usage */}
Trusted by educators worldwide
{/* Footer Section
* Contains:
* - Branded logo with playful multi-colored letters
* - Learning resource links
* - Social media links and contact information
* - Non-profit mission statement and copyright
*/}
);
}