Update src/app/reviews/page.tsx
This commit is contained in:
@@ -27,35 +27,21 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
name: "Services", id: "/services"},
|
||||
{
|
||||
name: "Products",
|
||||
id: "/products",
|
||||
},
|
||||
name: "Products", id: "/products"},
|
||||
{
|
||||
name: "Comfort Contract",
|
||||
id: "/comfort-contract",
|
||||
},
|
||||
name: "Comfort Contract", id: "/comfort-contract"},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "/reviews",
|
||||
},
|
||||
name: "Reviews", id: "/reviews"},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
name: "About", id: "/about"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="McCoy Heating and Air Conditioning"
|
||||
button={{
|
||||
text: "Request Service",
|
||||
href: "/request-service",
|
||||
}}
|
||||
text: "Request Service", href: "/request-service"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -68,6 +54,7 @@ export default function LandingPage() {
|
||||
imageSrc="http://img.b2bpic.net/free-vector/flat-design-patented-labels-set_23-2149725939.jpg"
|
||||
imageAlt="BBB A-rated and Accredited Business badge"
|
||||
mediaAnimation="opacity"
|
||||
bulletPoints={[]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -78,50 +65,20 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "review-1",
|
||||
name: "Local Homeowner",
|
||||
handle: "",
|
||||
testimonial: "Fast, honest, and professional. They had our furnace running the same day. Highly recommended!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/thrilled-confident-manager-business-attire-celebrates-victorious-milestone_482257-111932.jpg",
|
||||
imageAlt: "Happy homeowner",
|
||||
},
|
||||
id: "review-1", name: "Local Homeowner", handle: "", testimonial: "Fast, honest, and professional. They had our furnace running the same day. Highly recommended!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/thrilled-confident-manager-business-attire-celebrates-victorious-milestone_482257-111932.jpg", imageAlt: "Happy homeowner"},
|
||||
{
|
||||
id: "review-2",
|
||||
name: "Plain City Resident",
|
||||
handle: "",
|
||||
testimonial: "Fair pricing and no upselling. Exactly what you want from an HVAC company.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pretty-young-woman-with-long-hair-sitting-cafe-with-phone-man_273609-6373.jpg",
|
||||
imageAlt: "Satisfied Plain City resident",
|
||||
},
|
||||
id: "review-2", name: "Plain City Resident", handle: "", testimonial: "Fair pricing and no upselling. Exactly what you want from an HVAC company.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pretty-young-woman-with-long-hair-sitting-cafe-with-phone-man_273609-6373.jpg", imageAlt: "Satisfied Plain City resident"},
|
||||
{
|
||||
id: "review-3",
|
||||
name: "Central Ohio Business Owner",
|
||||
handle: "",
|
||||
testimonial: "Installed our new system on time and on budget. Highly recommend McCoy.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/thumbs-up-spa-smiling-girl-white-robe-good-wellness-vibes_169016-69478.jpg",
|
||||
imageAlt: "Business owner",
|
||||
},
|
||||
id: "review-3", name: "Central Ohio Business Owner", handle: "", testimonial: "Installed our new system on time and on budget. Highly recommend McCoy.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/thumbs-up-spa-smiling-girl-white-robe-good-wellness-vibes_169016-69478.jpg", imageAlt: "Business owner"},
|
||||
{
|
||||
id: "review-4",
|
||||
name: "Mark R.",
|
||||
handle: "",
|
||||
testimonial: "McCoy is reliable and trustworthy. They fixed my AC quickly when it broke down in the summer heat.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-short-curly-hair-colorful-shirt-smiling-cheerfully-showing-thumbs-up-green-wall_141793-29344.jpg",
|
||||
imageAlt: "Happy customer Mark R.",
|
||||
},
|
||||
id: "review-4", name: "Mark R.", handle: "", testimonial: "McCoy is reliable and trustworthy. They fixed my AC quickly when it broke down in the summer heat.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-short-curly-hair-colorful-shirt-smiling-cheerfully-showing-thumbs-up-green-wall_141793-29344.jpg", imageAlt: "Happy customer Mark R."},
|
||||
{
|
||||
id: "review-5",
|
||||
name: "Susan L.",
|
||||
handle: "",
|
||||
testimonial: "Professional and friendly team. My new furnace installation was seamless and efficient.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-thinking_93675-133241.jpg",
|
||||
imageAlt: "Satisfied customer Susan L.",
|
||||
},
|
||||
id: "review-5", name: "Susan L.", handle: "", testimonial: "Professional and friendly team. My new furnace installation was seamless and efficient.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-thinking_93675-133241.jpg", imageAlt: "Satisfied customer Susan L."},
|
||||
]}
|
||||
showRating={true}
|
||||
title="Hear From Our Happy Clients"
|
||||
@@ -133,109 +90,67 @@ export default function LandingPage() {
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "downward-rays-static",
|
||||
}}
|
||||
variant: "downward-rays-static"}}
|
||||
text="Want to experience the difference? Call 614-504-5911 or request service."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call 614-504-5911",
|
||||
href: "tel:6145045911",
|
||||
},
|
||||
text: "Call 614-504-5911", href: "tel:6145045911"},
|
||||
{
|
||||
text: "Request Service",
|
||||
href: "/request-service",
|
||||
},
|
||||
text: "Request Service", href: "/request-service"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/cityscape-through-window_23-2151975111.jpg?_wi=5"
|
||||
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: "Quick Links",
|
||||
items: [
|
||||
title: "Quick Links", items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
label: "Home", href: "/"},
|
||||
{
|
||||
label: "Services",
|
||||
href: "/services",
|
||||
},
|
||||
label: "Services", href: "/services"},
|
||||
{
|
||||
label: "Products",
|
||||
href: "/products",
|
||||
},
|
||||
label: "Products", href: "/products"},
|
||||
{
|
||||
label: "Comfort Contract",
|
||||
href: "/comfort-contract",
|
||||
},
|
||||
label: "Comfort Contract", href: "/comfort-contract"},
|
||||
{
|
||||
label: "Reviews",
|
||||
href: "/reviews",
|
||||
},
|
||||
label: "Reviews", href: "/reviews"},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
label: "About", href: "/about"},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Contact", href: "/contact"},
|
||||
{
|
||||
label: "Employment",
|
||||
href: "/employment",
|
||||
},
|
||||
label: "Employment", href: "/employment"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{
|
||||
label: "231 Friend St, Plain City, OH",
|
||||
href: "https://www.google.com/maps/search/231+Friend+St,+Plain+City,+OH",
|
||||
},
|
||||
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: "Tel: 614-504-5911", href: "tel:6145045911"},
|
||||
{
|
||||
label: "office@mccoyheatingandair.com",
|
||||
href: "mailto:office@mccoyheatingandair.com",
|
||||
},
|
||||
label: "office@mccoyheatingandair.com", href: "mailto:office@mccoyheatingandair.com"},
|
||||
{
|
||||
label: "Hours: Mon–Fri 8AM–5PM",
|
||||
href: "#",
|
||||
},
|
||||
label: "Hours: Mon–Fri 8AM–5PM", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Trust",
|
||||
items: [
|
||||
title: "Trust", items: [
|
||||
{
|
||||
label: "BBB A-Rated & Accredited Business",
|
||||
href: "#",
|
||||
},
|
||||
label: "BBB A-Rated & Accredited Business", href: "#"},
|
||||
{
|
||||
label: "Authorized Lennox Dealer",
|
||||
href: "#",
|
||||
},
|
||||
label: "Authorized Lennox Dealer", href: "#"},
|
||||
{
|
||||
label: "Financing Available",
|
||||
href: "#",
|
||||
},
|
||||
label: "Financing Available", href: "#"},
|
||||
{
|
||||
label: "Cash · Check · American Express",
|
||||
href: "#",
|
||||
},
|
||||
label: "Cash · Check · American Express", href: "#"},
|
||||
{
|
||||
label: "Facebook",
|
||||
href: "https://facebook.com/McCoyHeatingandAir",
|
||||
},
|
||||
label: "Facebook", href: "https://facebook.com/McCoyHeatingandAir"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user