Update src/app/about/page.tsx
This commit is contained in:
@@ -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"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user