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 { ContactFormDesigns, HeroDesigns, FaqDesigns, } from '../../components/WebPageComponents/designs'; import ContactFormSection from '../../components/WebPageComponents/ContactFormComponent'; import HeroSection from '../../components/WebPageComponents/HeroComponent'; import FaqSection from '../../components/WebPageComponents/FaqComponent'; export default function WebSite() { const cardsStyle = useAppSelector((state) => state.style.cardsStyle); const bgColor = useAppSelector((state) => state.style.bgLayoutColor); const projectName = 'Adminpro'; useEffect(() => { const darkElement = document.querySelector('body .dark'); if (darkElement) { darkElement.classList.remove('dark'); } }, []); const faqs = [ { question: 'How do I contact ${projectName} support?', answer: 'You can contact our support team via the contact form on this page or by emailing us directly. We are available 24/7 to assist you.', }, { question: 'What is the response time for inquiries?', answer: 'Our team strives to respond to all inquiries within 24 hours. We prioritize urgent issues to ensure timely assistance.', }, { question: 'Can I request a demo of ${projectName}?', answer: 'Yes, we offer personalized demos to help you understand how ${projectName} can benefit your team. Contact us to schedule a session.', }, { question: 'How do I report a technical issue?', answer: 'If you encounter any technical issues, please use the contact form to provide details. Our technical team will address the problem promptly.', }, { question: 'Is there a community forum for ${projectName} users?', answer: 'Yes, we have an active community forum where users can share experiences, ask questions, and provide feedback. Join the conversation today!', }, ]; return (
{`Contact Us - ${projectName}`}
); } WebSite.getLayout = function getLayout(page: ReactElement) { return {page}; };