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 = 'BlackEconDev'; useEffect(() => { const darkElement = document.querySelector('body .dark'); if (darkElement) { darkElement.classList.remove('dark'); } }, []); const features_points = [ { name: 'Advanced Search', description: 'Easily find professionals by filtering through multiple tags. Quickly connect with the right expert in economic development.', icon: 'mdiMagnify', }, { name: 'Profile Management', description: 'Members can update their contact information and profile picture anytime, ensuring their details are always current.', icon: 'mdiAccountEdit', }, { name: 'Admin Control', description: 'Admins can manage users, create new tags, and oversee site settings, maintaining a seamless user experience.', icon: 'mdiShieldAccount', }, ]; return (
{`Connect with Experts in Economic Development`}
); } WebSite.getLayout = function getLayout(page: ReactElement) { return {page}; };