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, PricingDesigns, } from '../components/WebPageComponents/designs'; import HeroSection from '../components/WebPageComponents/HeroComponent'; import FeaturesSection from '../components/WebPageComponents/FeaturesComponent'; import PricingSection from '../components/WebPageComponents/PricingComponent'; export default function WebSite() { const cardsStyle = useAppSelector((state) => state.style.cardsStyle); const bgColor = useAppSelector((state) => state.style.bgLayoutColor); const projectName = 'Employee Payroll with Smart Attendance'; useEffect(() => { const darkElement = document.querySelector('body .dark'); if (darkElement) { darkElement.classList.remove('dark'); } }, []); const pages = [ { href: '/services', label: 'services', }, { href: '/contact', label: 'contact', }, { href: '/pricing', label: 'pricing', }, { href: '/home', label: 'home', }, { href: '/about', label: 'about', }, ]; const features_points = [ { name: 'Advanced Attendance Solutions', description: 'Utilize cutting-edge technology for accurate attendance tracking, ensuring reliability and efficiency in employee management.', icon: 'mdiClockFast', }, { name: 'Integrated Payroll Services', description: 'Automate payroll processes with precision, reducing manual errors and ensuring timely salary disbursements.', icon: 'mdiCalculator', }, { name: 'Customizable Reporting Tools', description: 'Generate detailed reports tailored to your business needs, providing insights and data-driven decision-making capabilities.', icon: 'mdiChartLine', }, ]; const pricing_features = { standard: { features: ['Basic Attendance Tracking', 'Employee Profile Management'], limited_features: ['Limited Payroll Processing', 'Basic Support'], }, premium: { features: [ 'Advanced Attendance Tracking', 'Comprehensive Payroll Processing', 'Customizable Employee Profiles', ], also_included: ['Priority Support', 'Integration with Mapping API'], }, business: { features: [ 'Full Attendance and Payroll Suite', 'Advanced Analytics and Reporting', 'Dedicated Account Manager', 'Custom Integrations', ], }, }; const description = { standard: 'Ideal for individuals or small teams looking to manage basic attendance and employee profiles efficiently.', premium: 'Perfect for small startups or agencies seeking comprehensive attendance and payroll solutions with added support and customization options.', business: 'Designed for enterprises requiring a full suite of attendance and payroll features, advanced analytics, and dedicated support.', }; return (
{`Our Services - Smart Attendance & Payroll`}
); } WebSite.getLayout = function getLayout(page: ReactElement) { return {page}; };