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, TestimonialsDesigns, ContactFormDesigns, } from '../components/WebPageComponents/designs'; import HeroSection from '../components/WebPageComponents/HeroComponent'; import FeaturesSection from '../components/WebPageComponents/FeaturesComponent'; import AboutUsSection from '../components/WebPageComponents/AboutUsComponent'; import TestimonialsSection from '../components/WebPageComponents/TestimonialsComponent'; 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 = 'Asova'; useEffect(() => { const darkElement = document.querySelector('body .dark'); if (darkElement) { darkElement.classList.remove('dark'); } }, []); const pages = [ { href: '/home', label: 'home', }, { href: '/services', label: 'services', }, { href: '/contact', label: 'contact', }, { href: '/pricing', label: 'pricing', }, { href: '/faq', label: 'FAQ', }, ]; const features_points = [ { name: 'Seamless Property Management', description: 'Effortlessly manage properties with our intuitive interface. Track maintenance, tenant agreements, and rental income all in one place.', icon: 'mdiHomeCityOutline', }, { name: 'Advanced Project Planning', description: 'Streamline project workflows with digital tools. Monitor progress, manage contracts, and ensure timely completion of development projects.', icon: 'mdiCalendarCheck', }, { name: 'Real-Time GPS Tracking', description: 'Enhance staff efficiency and safety with real-time location tracking. Optimize routes and ensure timely job completion.', icon: 'mdiMapMarkerPath', }, ]; const testimonials = [ { text: "${projectName} has transformed our property management process. It's intuitive and efficient, saving us countless hours each week.", company: 'GreenLeaf Estates', user_name: 'John Doe, Property Manager', }, { text: "As a developer, ${projectName} has streamlined our project planning and execution. It's a game-changer for our team.", company: 'BuildSmart Solutions', user_name: 'Jane Smith, Project Lead', }, { text: "The GPS tracking feature in ${projectName} ensures our staff's safety and efficiency. It's an invaluable tool for our operations.", company: 'RouteMaster Services', user_name: 'Michael Brown, Operations Manager', }, { text: 'With ${projectName}, managing tenant requests has never been easier. Our response time has improved significantly.', company: 'UrbanNest Rentals', user_name: 'Emily White, Tenant Relations Specialist', }, { text: 'The seamless integration with Stripe has simplified our billing process. ${projectName} is a must-have for any trade business.', company: 'CraftPro Services', user_name: 'David Green, Finance Director', }, { text: 'We love how customizable ${projectName} is. It adapts perfectly to our unique business needs.', company: 'InnovateBuild Inc.', user_name: 'Sarah Johnson, CEO', }, ]; return (