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 = 'Test 444'; 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: 'Unified Dashboard', description: "Access all your department's data in one place. Stay informed with real-time updates and insights to make informed decisions quickly.", icon: 'mdiViewDashboard', }, { name: 'Lead Management', description: 'Effortlessly track and manage leads through every stage. Prioritize follow-ups and ensure no opportunity is missed.', icon: 'mdiAccountMultiple', }, { name: 'Document Collaboration', description: 'Collaborate on legal documents seamlessly. Share, edit, and review files with your team, ensuring accuracy and efficiency.', icon: 'mdiFileDocumentEdit', }, ]; const testimonials = [ { text: '${projectName} has revolutionized our workflow. The seamless integration between departments has saved us countless hours each week.', company: 'Legal Innovators Inc.', user_name: 'John Doe, Head of Operations', }, { text: "The lead management feature is a game-changer. We've seen a 30% increase in conversions since implementing ${projectName}.", company: 'Justice Partners LLC', user_name: 'Jane Smith, Sales Director', }, { text: 'Our team collaboration has never been better. ${projectName} makes document sharing and editing a breeze.', company: 'LawTech Solutions', user_name: 'Emily Johnson, Senior Attorney', }, { text: 'I love how intuitive and user-friendly ${projectName} is. It has made my job so much easier and more efficient.', company: 'Advocate Alliance', user_name: 'Michael Brown, Customer Service Manager', }, { text: 'The insights and analytics provided by ${projectName} are invaluable. We can now make data-driven decisions with confidence.', company: 'Legal Visionaries', user_name: 'Sarah Williams, Marketing Lead', }, { text: "${projectName} has transformed our client interactions. The CRM's features are tailored perfectly for the legal industry.", company: 'Counsel Connect', user_name: 'David Lee, Client Relations Specialist', }, ]; return (
{`CRM Solutions for the Law Industry | Connect & Organize`}
); } WebSite.getLayout = function getLayout(page: ReactElement) { return {page}; };