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, AboutUsDesigns, ContactFormDesigns, } from '../components/WebPageComponents/designs'; import HeroSection from '../components/WebPageComponents/HeroComponent'; import FeaturesSection from '../components/WebPageComponents/FeaturesComponent'; import AboutUsSection from '../components/WebPageComponents/AboutUsComponent'; import ContactFormSection from '../components/WebPageComponents/ContactFormComponent'; export default function WebSite() { const cardsStyle = useAppSelector((state) => state.style.cardsStyle); const bgColor = useAppSelector((state) => state.style.bgLayoutColor); const projectName = 'vidya plus'; useEffect(() => { const darkElement = document.querySelector('body .dark'); if (darkElement) { darkElement.classList.remove('dark'); } }, []); const pages = [ { href: '/home', label: 'home', }, { href: '/about', label: 'about', }, { href: '/contact', label: 'contact', }, ]; const features_points = [ { name: 'Seamless Admissions', description: 'Streamline the entire admission process with online applications, document uploads, and real-time status updates. Simplify student onboarding with ease.', icon: 'mdiAccountPlus', }, { name: 'Efficient Fee Management', description: 'Manage fee collection effortlessly with online payments, automated reminders, and detailed financial reports. Keep track of every transaction securely.', icon: 'mdiCashMultiple', }, { name: 'Dynamic Class Promotions', description: 'Automate class promotions and track student progress with comprehensive reports. Ensure smooth transitions and accurate record-keeping.', icon: 'mdiSchoolOutline', }, ]; return (
{`Vidya Plus - Comprehensive College Management System`}
); } WebSite.getLayout = function getLayout(page: ReactElement) { return {page}; };