Merge version_1 into main #2
@@ -7,7 +7,7 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS
|
||||
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
|
||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
@@ -25,30 +25,12 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Cooling",
|
||||
id: "/cooling",
|
||||
},
|
||||
{
|
||||
name: "Heating",
|
||||
id: "/heating",
|
||||
},
|
||||
{
|
||||
name: "Commercial",
|
||||
id: "/commercial",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Cooling", id: "/cooling" },
|
||||
{ name: "Heating", id: "/heating" },
|
||||
{ name: "Commercial", id: "/commercial" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Maximum Comfort Specialists of Arizona"
|
||||
/>
|
||||
@@ -59,9 +41,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Your Local Comfort Partner"
|
||||
description={[
|
||||
"Maximum Comfort Specialists of Arizona was built on a simple promise: show up ready, do the job right, and respect our customers.",
|
||||
"We are Phoenix locals committed to raising the bar for the HVAC industry through technical precision and professional conduct.",
|
||||
]}
|
||||
"Maximum Comfort Specialists of Arizona was built on a simple promise: show up ready, do the job right, and respect our customers.", "We are Phoenix locals committed to raising the bar for the HVAC industry through technical precision and professional conduct."]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -72,26 +52,12 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
groups={[
|
||||
{
|
||||
id: "g1",
|
||||
groupTitle: "Leadership",
|
||||
members: [
|
||||
id: "g1", groupTitle: "Leadership", members: [
|
||||
{
|
||||
id: "t1",
|
||||
title: "Founder",
|
||||
subtitle: "Expert HVAC Engineer",
|
||||
detail: "Leading the team with a focus on quality and service integrity.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-portrait-handsome-young-man-sitting-cafe-talking-friend-mobile-phone-with-wireless-earphones-laughing-smiling-listening-funny-podcast_1258-314334.jpg?_wi=3",
|
||||
},
|
||||
id: "t1", title: "Founder", subtitle: "Expert HVAC Engineer", detail: "Leading the team with a focus on quality and service integrity.", imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-portrait-handsome-young-man-sitting-cafe-talking-friend-mobile-phone-with-wireless-earphones-laughing-smiling-listening-funny-podcast_1258-314334.jpg"},
|
||||
{
|
||||
id: "t2",
|
||||
title: "Operations Manager",
|
||||
subtitle: "Customer Success Expert",
|
||||
detail: "Coordinating scheduling and service logistics.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/upbeat-saleswoman-hired-explain-vehicle-pricing-options-clients_482257-118422.jpg?_wi=3",
|
||||
},
|
||||
id: "t2", title: "Operations Manager", subtitle: "Customer Success Expert", detail: "Coordinating scheduling and service logistics.", imageSrc: "http://img.b2bpic.net/free-photo/upbeat-saleswoman-hired-explain-vehicle-pricing-options-clients_482257-118422.jpg"},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smoke-pipe-industry-factory_1127-3436.jpg",
|
||||
imageAlt: "hvac technician phoenix roof",
|
||||
},
|
||||
]}
|
||||
title="The Technical Team"
|
||||
@@ -102,54 +68,9 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Cooling",
|
||||
href: "/cooling",
|
||||
},
|
||||
{
|
||||
label: "Heating",
|
||||
href: "/heating",
|
||||
},
|
||||
{
|
||||
label: "Commercial",
|
||||
href: "/commercial",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Financing",
|
||||
href: "/financing",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Book Service",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ items: [{ label: "Cooling", href: "/cooling" }, { label: "Heating", href: "/heating" }, { label: "Commercial", href: "/commercial" }] },
|
||||
{ items: [{ label: "About Us", href: "/about" }, { label: "Financing", href: "/financing" }, { label: "Contact", href: "/contact" }] },
|
||||
{ items: [{ label: "Book Service", href: "/contact" }, { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
|
||||
]}
|
||||
logoText="Maximum Comfort Specialists of Arizona"
|
||||
/>
|
||||
|
||||
248
src/app/page.tsx
248
src/app/page.tsx
@@ -29,30 +29,12 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Cooling",
|
||||
id: "/cooling",
|
||||
},
|
||||
{
|
||||
name: "Heating",
|
||||
id: "/heating",
|
||||
},
|
||||
{
|
||||
name: "Commercial",
|
||||
id: "/commercial",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Cooling", id: "/cooling" },
|
||||
{ name: "Heating", id: "/heating" },
|
||||
{ name: "Commercial", id: "/commercial" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Maximum Comfort Specialists of Arizona"
|
||||
/>
|
||||
@@ -60,67 +42,27 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Maximum Comfort. Arizona Heat."
|
||||
description="Professional cooling and heating engineered for Phoenix residents and businesses. Reliable, responsive, and locally owned."
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/lifestyle-portrait-handsome-young-man-sitting-cafe-talking-friend-mobile-phone-with-wireless-earphones-laughing-smiling-listening-funny-podcast_1258-314334.jpg",
|
||||
alt: "Customer 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/upbeat-saleswoman-hired-explain-vehicle-pricing-options-clients_482257-118422.jpg",
|
||||
alt: "Customer 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-man-standing-office_23-2148327018.jpg",
|
||||
alt: "Customer 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/mom-daughter-spending-weekend-together-having-fun_259150-57529.jpg",
|
||||
alt: "Customer 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/person-working-building-construction_23-2149184970.jpg",
|
||||
alt: "Customer 5",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/lifestyle-portrait-handsome-young-man-sitting-cafe-talking-friend-mobile-phone-with-wireless-earphones-laughing-smiling-listening-funny-podcast_1258-314334.jpg", alt: "Customer 1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/upbeat-saleswoman-hired-explain-vehicle-pricing-options-clients_482257-118422.jpg", alt: "Customer 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/young-man-standing-office_23-2148327018.jpg", alt: "Customer 3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/mom-daughter-spending-weekend-together-having-fun_259150-57529.jpg", alt: "Customer 4" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/person-working-building-construction_23-2149184970.jpg", alt: "Customer 5" },
|
||||
]}
|
||||
avatarText="Trusted by 500+ Phoenix neighbors"
|
||||
buttons={[
|
||||
{
|
||||
text: "Request a Quote",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
text: "Book Online",
|
||||
href: "/book-online",
|
||||
},
|
||||
{ text: "Request a Quote", href: "/contact" },
|
||||
{ text: "Book Online", href: "/book-online" },
|
||||
]}
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "24/7 Emergency Service",
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Licensed & Insured",
|
||||
icon: ShieldCheck,
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Phoenix Owned",
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Top-Rated Technicians",
|
||||
icon: Star,
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Guaranteed Satisfaction",
|
||||
},
|
||||
{ type: "text", text: "24/7 Emergency Service" },
|
||||
{ type: "text-icon", text: "Licensed & Insured", icon: ShieldCheck },
|
||||
{ type: "text", text: "Phoenix Owned" },
|
||||
{ type: "text-icon", text: "Top-Rated Technicians", icon: Star },
|
||||
{ type: "text", text: "Guaranteed Satisfaction" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -131,21 +73,9 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
icon: Home,
|
||||
title: "Residential Comfort",
|
||||
description: "High-efficiency systems for cooling, heating, and air quality control designed to handle extreme heat.",
|
||||
},
|
||||
{
|
||||
icon: Building,
|
||||
title: "Commercial Reliability",
|
||||
description: "Uptime-focused maintenance and installation for business and commercial real estate assets.",
|
||||
},
|
||||
{
|
||||
icon: Wallet,
|
||||
title: "Financing Support",
|
||||
description: "Practical financing solutions that make premium replacement and repair accessible and manageable.",
|
||||
},
|
||||
{ icon: Home, title: "Residential Comfort", description: "High-efficiency systems for cooling, heating, and air quality control designed to handle extreme heat." },
|
||||
{ icon: Building, title: "Commercial Reliability", description: "Uptime-focused maintenance and installation for business and commercial real estate assets." },
|
||||
{ icon: Wallet, title: "Financing Support", description: "Practical financing solutions that make premium replacement and repair accessible and manageable." },
|
||||
]}
|
||||
title="Service Tailored to Arizona"
|
||||
description="We specialize in the unique demands of Phoenix temperatures. Whether you manage a large facility or a family home, we have the technical precision and local experience to maintain your environment."
|
||||
@@ -159,46 +89,11 @@ export default function LandingPage() {
|
||||
gridVariant="bento-grid"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah J.",
|
||||
role: "Homeowner",
|
||||
company: "Scottsdale",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-portrait-handsome-young-man-sitting-cafe-talking-friend-mobile-phone-with-wireless-earphones-laughing-smiling-listening-funny-podcast_1258-314334.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Michael R.",
|
||||
role: "Property Manager",
|
||||
company: "Central Phoenix",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/upbeat-saleswoman-hired-explain-vehicle-pricing-options-clients_482257-118422.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "David K.",
|
||||
role: "Small Biz Owner",
|
||||
company: "Tempe",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-standing-office_23-2148327018.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Lisa M.",
|
||||
role: "Homeowner",
|
||||
company: "Gilbert",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mom-daughter-spending-weekend-together-having-fun_259150-57529.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Robert B.",
|
||||
role: "Facility Manager",
|
||||
company: "Downtown",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-working-building-construction_23-2149184970.jpg?_wi=1",
|
||||
},
|
||||
{ id: "1", name: "Sarah J.", role: "Homeowner", company: "Scottsdale", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-portrait-handsome-young-man-sitting-cafe-talking-friend-mobile-phone-with-wireless-earphones-laughing-smiling-listening-funny-podcast_1258-314334.jpg" },
|
||||
{ id: "2", name: "Michael R.", role: "Property Manager", company: "Central Phoenix", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/upbeat-saleswoman-hired-explain-vehicle-pricing-options-clients_482257-118422.jpg" },
|
||||
{ id: "3", name: "David K.", role: "Small Biz Owner", company: "Tempe", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-man-standing-office_23-2148327018.jpg" },
|
||||
{ id: "4", name: "Lisa M.", role: "Homeowner", company: "Gilbert", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/mom-daughter-spending-weekend-together-having-fun_259150-57529.jpg" },
|
||||
{ id: "5", name: "Robert B.", role: "Facility Manager", company: "Downtown", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/person-working-building-construction_23-2149184970.jpg" },
|
||||
]}
|
||||
title="Trust Built in Phoenix"
|
||||
description="Real service, real results. See what your neighbors say about our commitment to comfort."
|
||||
@@ -214,36 +109,11 @@ export default function LandingPage() {
|
||||
title="Meet Your Comfort Specialists"
|
||||
description="Our team of dedicated professionals is committed to maintaining the highest standards of service for the Phoenix valley."
|
||||
members={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "John D.",
|
||||
role: "Lead HVAC Specialist",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-portrait-handsome-young-man-sitting-cafe-talking-friend-mobile-phone-with-wireless-earphones-laughing-smiling-listening-funny-podcast_1258-314334.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Sarah P.",
|
||||
role: "Customer Success Lead",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/upbeat-saleswoman-hired-explain-vehicle-pricing-options-clients_482257-118422.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Mike L.",
|
||||
role: "Field Technician",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-standing-office_23-2148327018.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Elena R.",
|
||||
role: "Technical Coordinator",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mom-daughter-spending-weekend-together-having-fun_259150-57529.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "David S.",
|
||||
role: "Commercial Systems Expert",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-working-building-construction_23-2149184970.jpg?_wi=2",
|
||||
},
|
||||
{ id: "t1", name: "John D.", role: "Lead HVAC Specialist", imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-portrait-handsome-young-man-sitting-cafe-talking-friend-mobile-phone-with-wireless-earphones-laughing-smiling-listening-funny-podcast_1258-314334.jpg" },
|
||||
{ id: "t2", name: "Sarah P.", role: "Customer Success Lead", imageSrc: "http://img.b2bpic.net/free-photo/upbeat-saleswoman-hired-explain-vehicle-pricing-options-clients_482257-118422.jpg" },
|
||||
{ id: "t3", name: "Mike L.", role: "Field Technician", imageSrc: "http://img.b2bpic.net/free-photo/young-man-standing-office_23-2148327018.jpg" },
|
||||
{ id: "t4", name: "Elena R.", role: "Technical Coordinator", imageSrc: "http://img.b2bpic.net/free-photo/mom-daughter-spending-weekend-together-having-fun_259150-57529.jpg" },
|
||||
{ id: "t5", name: "David S.", role: "Commercial Systems Expert", imageSrc: "http://img.b2bpic.net/free-photo/person-working-building-construction_23-2149184970.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -253,60 +123,18 @@ export default function LandingPage() {
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
plans={[]}
|
||||
title="Service Plans"
|
||||
description="Choose a maintenance plan that works for you."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Cooling",
|
||||
href: "/cooling",
|
||||
},
|
||||
{
|
||||
label: "Heating",
|
||||
href: "/heating",
|
||||
},
|
||||
{
|
||||
label: "Commercial",
|
||||
href: "/commercial",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Financing",
|
||||
href: "/financing",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Book Service",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ items: [{ label: "Cooling", href: "/cooling" }, { label: "Heating", href: "/heating" }, { label: "Commercial", href: "/commercial" }] },
|
||||
{ items: [{ label: "About Us", href: "/about" }, { label: "Financing", href: "/financing" }, { label: "Contact", href: "/contact" }] },
|
||||
{ items: [{ label: "Book Service", href: "/contact" }, { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
|
||||
]}
|
||||
logoText="Maximum Comfort Specialists of Arizona"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user