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, FaqDesigns, } 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'; 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 = 'FLPMSUPERSTAR'; useEffect(() => { const darkElement = document.querySelector('body .dark'); if (darkElement) { darkElement.classList.remove('dark'); } }, []); const pages = [ { href: '/home', label: 'home', }, { href: '/about', label: 'about', }, { href: '/services', label: 'services', }, { href: '/contact', label: 'contact', }, { href: '/faq', label: 'FAQ', }, ]; const features_points = [ { name: 'Task Management', description: 'Effortlessly organize and prioritize tasks with our intuitive task management system. Stay on top of deadlines and ensure nothing falls through the cracks.', icon: 'mdiClipboardCheck', }, { name: 'Team Collaboration', description: 'Enhance team communication and collaboration with real-time updates and shared workspaces. Keep everyone aligned and working towards common goals.', icon: 'mdiAccountGroup', }, { name: 'Progress Tracking', description: 'Monitor project progress with detailed analytics and reports. Gain insights into team performance and make informed decisions to drive success.', icon: 'mdiChartLine', }, ]; const faqs = [ { question: 'What is ${projectName} and how does it work?', answer: '${projectName} is a project management tool designed to streamline workflows and enhance team collaboration. It offers features like task management, progress tracking, and team communication to help you manage projects efficiently.', }, { question: 'Is there a free trial available for ${projectName}?', answer: 'Yes, ${projectName} offers a free trial period for new users to explore its features and determine if it meets their project management needs.', }, { question: 'How secure is my data with ${projectName}?', answer: 'We prioritize data security and use advanced encryption methods to protect your information. Regular security audits ensure that your data remains safe and confidential.', }, { question: 'Can I integrate ${projectName} with other tools?', answer: 'Absolutely! ${projectName} supports integrations with popular tools like Slack, Google Drive, and Trello, allowing you to seamlessly connect your existing workflows.', }, { question: 'What support options are available for ${projectName} users?', answer: 'We offer 24/7 customer support through email and live chat. Our dedicated support team is always ready to assist you with any questions or issues you may encounter.', }, { question: 'How customizable is ${projectName} for different teams?', answer: "${projectName} is highly customizable, allowing teams to tailor the tool to their specific needs. You can adjust settings, create custom workflows, and personalize dashboards to suit your team's preferences.", }, ]; return (
{`Project Management Tool - Streamline Your Workflow`}
); } WebSite.getLayout = function getLayout(page: ReactElement) { return {page}; };