import React, { useEffect, useState } from 'react'; import type { ReactElement } from 'react'; import Head from 'next/head'; import Link from 'next/link'; import { useAppSelector } from '../../stores/hooks'; import LayoutGuest from '../../layouts/Guest'; import WebSiteHeader from '../../components/WebPageComponents/Header'; import WebSiteFooter from '../../components/WebPageComponents/Footer'; import { HeroDesigns, FeaturesDesigns, TestimonialsDesigns, } from '../../components/WebPageComponents/designs'; import HeroSection from '../../components/WebPageComponents/HeroComponent'; import FeaturesSection from '../../components/WebPageComponents/FeaturesComponent'; import TestimonialsSection from '../../components/WebPageComponents/TestimonialsComponent'; export default function WebSite() { const cardsStyle = useAppSelector((state) => state.style.cardsStyle); const bgColor = useAppSelector((state) => state.style.bgLayoutColor); const projectName = 'test4'; useEffect(() => { const darkElement = document.querySelector('body .dark'); if (darkElement) { darkElement.classList.remove('dark'); } }, []); const pages = [ { href: '/services', label: 'services', }, { href: '/contact', label: 'contact', }, { href: '/home', label: 'home', }, { href: '/about', label: 'about', }, { href: '/faq', label: 'FAQ', }, ]; const features_points = [ { name: 'Dynamic Course Creation', description: 'Easily design and manage courses with our intuitive tools. Customize syllabi, integrate multimedia resources, and streamline assessments for an engaging learning experience.', icon: 'mdiBookEditOutline', }, { name: 'Real-Time Student Analytics', description: 'Gain valuable insights into student performance and engagement. Use data-driven reports to tailor educational strategies and improve learning outcomes.', icon: 'mdiChartBar', }, { name: 'Collaborative Instructor Tools', description: 'Facilitate seamless collaboration among instructors with shared resources and communication tools. Enhance teaching effectiveness and foster a supportive educational environment.', icon: 'mdiAccountGroupOutline', }, { name: 'Secure Enrollment Management', description: 'Efficiently manage student enrollments with secure payment processing and course assignment features. Ensure a smooth and organized registration process.', icon: 'mdiLockCheck', }, { name: 'Interactive Discussion Boards', description: 'Encourage student and instructor interaction through integrated discussion boards. Foster a collaborative learning community and enhance communication.', icon: 'mdiForumOutline', }, { name: 'Comprehensive Resource Library', description: 'Access a vast library of educational resources and materials. Support diverse learning needs and enrich the educational experience for all users.', icon: 'mdiLibraryBooks', }, ]; const testimonials = [ { text: "${projectName} has transformed our educational approach. The platform's features are intuitive and have significantly improved our course management.", company: 'EduTech Solutions', user_name: 'Anna Roberts, Education Director', }, { text: 'The analytics provided by ${projectName} are a game-changer. We can now make informed decisions to enhance student learning outcomes.', company: 'Learning Innovations Inc.', user_name: 'James Carter, Data Analyst', }, { text: 'Our instructors love the collaborative tools offered by ${projectName}. It has made teaching more effective and engaging for everyone involved.', company: 'Future Educators Group', user_name: 'Laura Smith, Lead Instructor', }, { text: 'The support team at ${projectName} is exceptional. They are always ready to assist and ensure we get the most out of the platform.', company: 'Bright Minds Academy', user_name: 'David Lee, IT Support Specialist', }, { text: 'Our students have responded positively to the interactive elements and easy access to course materials. ${projectName} truly enhances the learning experience.', company: 'Global Learning Solutions', user_name: 'Sarah Brown, Student Coordinator', }, { text: "Implementing ${projectName} was a game-changer for us. The platform's features and user-friendly interface have made managing courses a breeze.", company: 'Innovative Education Group', user_name: 'Michael Smith, Program Manager', }, ]; return (