Update src/app/employment/page.tsx
This commit is contained in:
@@ -2,14 +2,23 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import { Award, Briefcase, GraduationCap, HelpCircle, Lightbulb, Star, Timer } from "lucide-react";
|
||||
import { HeartHandshake, PiggyBank } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Products", id: "/products" },
|
||||
{ name: "Comfort Contract", id: "/comfort-contract" },
|
||||
{ name: "Reviews", id: "/reviews" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "Employment", id: "/employment" }
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
@@ -26,196 +35,67 @@ export default function LandingPage() {
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Products",
|
||||
id: "/products",
|
||||
},
|
||||
{
|
||||
name: "Comfort Contract",
|
||||
id: "/comfort-contract",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "/reviews",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
navItems={navItems}
|
||||
brandName="McCoy Heating and Air Conditioning"
|
||||
button={{
|
||||
text: "Request Service",
|
||||
href: "/request-service",
|
||||
}}
|
||||
button={{ text: "Request Service", href: "/request-service" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="employment-intro" data-section="employment-intro">
|
||||
<div id="employment-content" data-section="employment-content">
|
||||
<SplitAbout
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
imagePosition="right"
|
||||
title="Join Our Growing Team"
|
||||
description="At Business, we believe our people are our greatest asset. We foster a collaborative and supportive environment where innovation thrives and careers are built. Discover opportunities to grow with us and make a real impact."
|
||||
buttons={[
|
||||
{
|
||||
text: "View Openings",
|
||||
href: "/careers",
|
||||
},
|
||||
]}
|
||||
title="Join Our Team at McCoy"
|
||||
description="At McCoy Heating and Air Conditioning, we're always looking for skilled, dedicated professionals to join our family. We offer a supportive work environment, competitive benefits, and opportunities for growth in Plain City and across Central Ohio."
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Culture of Innovation",
|
||||
description: "Be part of a team that embraces new ideas and cutting-edge solutions in the HVAC industry.",
|
||||
icon: Lightbulb,
|
||||
},
|
||||
{
|
||||
title: "Professional Development",
|
||||
description: "Access ongoing training, certifications, and mentorship programs to advance your career.",
|
||||
icon: Award,
|
||||
},
|
||||
{
|
||||
title: "Commitment to Excellence",
|
||||
description: "Work with a company dedicated to delivering top-tier service and customer satisfaction.",
|
||||
icon: Star,
|
||||
},
|
||||
{ title: "Great Benefits", description: "Competitive compensation, health, dental, and vision insurance.", icon: HeartHandshake },
|
||||
{ title: "Retirement Savings", description: "Secure your future with our generous 401K matching program.", icon: PiggyBank },
|
||||
{ title: "Training & Development", description: "Continuous learning and career advancement opportunities." },
|
||||
{ title: "Supportive Culture", description: "Work with a team that values respect, collaboration, and integrity." }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/air-conditioner-cleaning-commission_482257-85116.jpg"
|
||||
imageAlt="HVAC team smiling confidently"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="employment-benefits" data-section="employment-benefits">
|
||||
<FeatureBorderGlow
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
icon: HeartHandshake,
|
||||
title: "Health & Wellness",
|
||||
description: "Comprehensive medical, dental, and vision insurance for you and your family.",
|
||||
},
|
||||
{
|
||||
icon: PiggyBank,
|
||||
title: "Retirement Plans",
|
||||
description: "Secure your future with our competitive 401(k) matching program.",
|
||||
},
|
||||
{
|
||||
icon: GraduationCap,
|
||||
title: "Continuous Learning",
|
||||
description: "Tuition reimbursement and professional development courses to enhance your skills.",
|
||||
},
|
||||
{
|
||||
icon: Timer,
|
||||
title: "Flexible Scheduling",
|
||||
description: "Work-life balance is important, we offer flexible hours and paid time off.",
|
||||
},
|
||||
]}
|
||||
title="Why Choose a Career at Business?"
|
||||
description="We offer a comprehensive benefits package designed to support your well-being, financial security, and career growth."
|
||||
tag="Benefits"
|
||||
tagIcon={Briefcase}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="employment-faqs" data-section="employment-faqs">
|
||||
<FaqBase
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "What is the application process like?",
|
||||
content: "Our application process typically involves an online application, an initial phone screening, followed by one or two rounds of interviews with the hiring manager and team members.",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Do you offer training for new hires?",
|
||||
content: "Yes, we provide extensive onboarding and ongoing training to ensure all new team members are equipped with the knowledge and skills for success in their roles.",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "What kind of growth opportunities are available?",
|
||||
content: "We are committed to internal growth. Many of our senior positions are filled by employees who started in entry-level roles and developed their careers with us through mentorship and specialized training.",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "What is the company culture at Business?",
|
||||
content: "Our culture is built on teamwork, respect, and a shared commitment to customer satisfaction. We encourage open communication, innovation, and a supportive environment where everyone can thrive.",
|
||||
},
|
||||
]}
|
||||
title="FAQs About Working with Business"
|
||||
description="Have questions about our hiring process or what it's like to work here? Find your answers below."
|
||||
tag="Careers FAQ"
|
||||
tagIcon={HelpCircle}
|
||||
faqsAnimation="slide-up"
|
||||
imageAlt="McCoy Heating and Air Conditioning team"
|
||||
mediaAnimation="opacity"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/cityscape-through-window_23-2151975111.jpg"
|
||||
imageAlt="Modern city skyline with HVAC elements"
|
||||
logoText="McCoy Heating and Air Conditioning"
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
title: "Quick Links", items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "Products", href: "/products" },
|
||||
{ label: "Comfort Contract", href: "/comfort-contract" },
|
||||
{ label: "Reviews", href: "/reviews" },
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "Employment", href: "/employment" }
|
||||
]
|
||||
},
|
||||
{
|
||||
label: "Employment",
|
||||
href: "/employment",
|
||||
title: "Contact", items: [
|
||||
{ label: "231 Friend St, Plain City, OH", href: "https://www.google.com/maps/search/231+Friend+St,+Plain+City,+OH" },
|
||||
{ label: "Tel: 614-504-5911", href: "tel:6145045911" },
|
||||
{ label: "office@mccoyheatingandair.com", href: "mailto:office@mccoyheatingandair.com" },
|
||||
{ label: "Hours: Mon–Fri 8AM–5PM", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "HVAC Repair",
|
||||
href: "/services/repair",
|
||||
},
|
||||
{
|
||||
label: "Installations",
|
||||
href: "/services/installation",
|
||||
},
|
||||
{
|
||||
label: "Maintenance",
|
||||
href: "/services/maintenance",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Resources",
|
||||
items: [
|
||||
{
|
||||
label: "Blog",
|
||||
href: "/blog",
|
||||
},
|
||||
{
|
||||
label: "FAQs",
|
||||
href: "/faqs",
|
||||
},
|
||||
],
|
||||
},
|
||||
title: "Trust", items: [
|
||||
{ label: "BBB A-Rated & Accredited Business", href: "#" },
|
||||
{ label: "Authorized Lennox Dealer", href: "#" },
|
||||
{ label: "Financing Available", href: "#" },
|
||||
{ label: "Cash · Check · American Express", href: "#" },
|
||||
{ label: "Facebook", href: "https://facebook.com/McCoyHeatingandAir" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
logoText="Business"
|
||||
copyrightText="© 2024 Business. All rights reserved."
|
||||
copyrightText="© 2026 McCoy Heating and Air Conditioning. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user