diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index 0a5ffbc..b95ef5e 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -7,7 +7,7 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis' import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; -export default function LandingPage() { +export default function ServicesPage() { return ( @@ -49,24 +41,9 @@ export default function LandingPage() { gridVariant="two-columns-alternating-heights" useInvertedBackground={false} features={[ - { - title: "AC Installation", - description: "Professional installation of energy-efficient air conditioning units.", - imageSrc: "http://img.b2bpic.net/free-photo/electrician-is-mounting-electric-sockets-white-wall-indoors_169016-17657.jpg", - imageAlt: "AC Installation", - }, - { - title: "Furnace Repair", - description: "Fast and reliable repairs for all furnace makes and models.", - imageSrc: "http://img.b2bpic.net/free-photo/young-man-room-with-solid-fuel-boiler-working-biofuel-economical-heating_169016-15373.jpg", - imageAlt: "Furnace Repair", - }, - { - title: "Emergency Diagnostics", - description: "24/7 emergency services for sudden heating or cooling failure.", - imageSrc: "http://img.b2bpic.net/free-photo/worker-repairing-water-heater_23-2149334228.jpg", - imageAlt: "Diagnostics", - }, + { title: "AC Installation", description: "Professional installation of energy-efficient air conditioning units.", imageSrc: "http://img.b2bpic.net/free-photo/electrician-is-mounting-electric-sockets-white-wall-indoors_169016-17657.jpg", imageAlt: "AC Installation" }, + { title: "Furnace Repair", description: "Fast and reliable repairs for all furnace makes and models.", imageSrc: "http://img.b2bpic.net/free-photo/young-man-room-with-solid-fuel-boiler-working-biofuel-economical-heating_169016-15373.jpg", imageAlt: "Furnace Repair" }, + { title: "Emergency Diagnostics", description: "24/7 emergency services for sudden heating or cooling failure.", imageSrc: "http://img.b2bpic.net/free-photo/worker-repairing-water-heater_23-2149334228.jpg", imageAlt: "Diagnostics" }, ]} title="Our Expert Services" description="Comprehensive HVAC maintenance and repair services." @@ -79,46 +56,11 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} testimonials={[ - { - id: "1", - name: "Alice Smith", - handle: "@alices", - testimonial: "Excellent service and very honest pricing. Highly recommend!", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/coffee-time-me-please_329181-17310.jpg", - }, - { - id: "2", - name: "Bob Jones", - handle: "@bjones", - testimonial: "Fixed my furnace in under an hour. Great team.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-girl-relaxing-carpet-living-room_329181-2676.jpg", - }, - { - id: "3", - name: "Charlie Day", - handle: "@cday", - testimonial: "Professional and courteous technicians. My home is now cool again.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/couple-changing-bulb-home_23-2147766978.jpg", - }, - { - id: "4", - name: "Dana White", - handle: "@dwhite", - testimonial: "Very satisfied with the quick response time.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-african-american-woman-smiling-cheerful-friendly-face-laughing-confident_839833-29956.jpg", - }, - { - id: "5", - name: "Evan Reed", - handle: "@ereed", - testimonial: "Transparent pricing and great installation service.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/young-loader-showing-thumbs-up-uniform-looking-happy-front-view_176474-21432.jpg", - }, + { id: "1", name: "Alice Smith", handle: "@alices", testimonial: "Excellent service and very honest pricing. Highly recommend!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/coffee-time-me-please_329181-17310.jpg" }, + { id: "2", name: "Bob Jones", handle: "@bjones", testimonial: "Fixed my furnace in under an hour. Great team.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-girl-relaxing-carpet-living-room_329181-2676.jpg" }, + { id: "3", name: "Charlie Day", handle: "@cday", testimonial: "Professional and courteous technicians. My home is now cool again.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/couple-changing-bulb-home_23-2147766978.jpg" }, + { id: "4", name: "Dana White", handle: "@dwhite", testimonial: "Very satisfied with the quick response time.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-african-american-woman-smiling-cheerful-friendly-face-laughing-confident_839833-29956.jpg" }, + { id: "5", name: "Evan Reed", handle: "@ereed", testimonial: "Transparent pricing and great installation service.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-loader-showing-thumbs-up-uniform-looking-happy-front-view_176474-21432.jpg" }, ]} showRating={true} title="What Our Customers Say" @@ -129,30 +71,8 @@ export default function LandingPage() {