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 = 'Nimona E-filling System'; useEffect(() => { const darkElement = document.querySelector('body .dark'); if (darkElement) { darkElement.classList.remove('dark'); } }, []); const features_points = [ { name: 'Seamless Department Integration', description: 'Connect sales, customer service, and marketing departments effortlessly. Enhance collaboration and ensure all teams are aligned with real-time data sharing.', icon: 'mdiAccountGroup', }, { name: 'Lead Tracking \u0026 Management', description: 'Efficiently track and manage leads with detailed status updates and categories. Ensure no opportunity is missed with comprehensive lead insights.', icon: 'mdiLeadPencil', }, { name: 'Comprehensive Contact Management', description: 'Organize and manage all client contacts in one place. Access detailed information and maintain strong client relationships with ease.', icon: 'mdiContactMail', }, ]; return (
{`Gojo CRM - Streamline Your Law Firm's Operations`}
); } WebSite.getLayout = function getLayout(page: ReactElement) { return {page}; };