Flatlogic Bot 26070b72a8 1.0
2025-04-18 08:32:41 +00:00

92 lines
2.8 KiB
TypeScript

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,
ContactFormDesigns,
} from '../../components/WebPageComponents/designs';
import HeroSection from '../../components/WebPageComponents/HeroComponent';
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 = 'UI test 1';
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: '/faq',
label: 'FAQ',
},
{
href: '/pricing',
label: 'pricing',
},
];
return (
<div className='flex flex-col min-h-screen'>
<Head>
<title>{`Contact Us | Get in Touch with ${projectName}`}</title>
<meta
name='description'
content={`Reach out to ${projectName} for any inquiries or support. Our team is here to assist you with all your event management needs.`}
/>
</Head>
<WebSiteHeader projectName={'UI test 1'} pages={pages} />
<main className={`flex-grow bg-white rounded-none `}>
<HeroSection
projectName={'UI test 1'}
image={['Customer support team ready']}
mainText={`Connect with ${projectName} Today`}
subTitle={`We're here to help with any questions or support you need. Reach out to ${projectName} and let us assist you in making your event a success.`}
design={HeroDesigns.TEXT_CENTER || ''}
buttonText={`Contact Us Now`}
/>
<ContactFormSection
projectName={'UI test 1'}
design={ContactFormDesigns.SIMPLE_CLEAN || ''}
image={['Email communication illustration']}
mainText={`Reach Out to ${projectName} `}
subTitle={`Have questions or need support? Contact us anytime, and our team at ${projectName} will respond promptly to assist you.`}
/>
</main>
<WebSiteFooter projectName={'UI test 1'} pages={pages} />
</div>
);
}
WebSite.getLayout = function getLayout(page: ReactElement) {
return <LayoutGuest>{page}</LayoutGuest>;
};