From f402dc989b6327701e0d64e68bd168fe9bce874d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 17:11:22 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 3bc318f..072ea1e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -79,16 +79,20 @@ export default function LandingPage() { tagIcon={Zap} features={[ { - id: "1", title: "Installation", description: "Expert installation of air conditioning systems for homes and businesses, ensuring optimal performance and energy efficiency.", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-working-with-equipment_23-2148921407.jpg", imageAlt: "AC installation service" + id: 1, + title: "Installation", description: "Expert installation of air conditioning systems for homes and businesses, ensuring optimal performance and energy efficiency.", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-working-with-equipment_23-2148921407.jpg", imageAlt: "AC installation service" }, { - id: "2", title: "Maintenance", description: "Regular system servicing to keep your air conditioning running smoothly, preventing breakdowns and extending equipment life.", imageSrc: "http://img.b2bpic.net/free-photo/electrician-is-mounting-electric-sockets-white-wall-indoors_169016-17800.jpg", imageAlt: "AC maintenance service" + id: 2, + title: "Maintenance", description: "Regular system servicing to keep your air conditioning running smoothly, preventing breakdowns and extending equipment life.", imageSrc: "http://img.b2bpic.net/free-photo/electrician-is-mounting-electric-sockets-white-wall-indoors_169016-17800.jpg", imageAlt: "AC maintenance service" }, { - id: "3", title: "Repair", description: "Fast, reliable repair services with quick response times. We diagnose and fix any cooling system issues promptly.", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-working-with-equipment_23-2148921407.jpg", imageAlt: "AC repair service" + id: 3, + title: "Repair", description: "Fast, reliable repair services with quick response times. We diagnose and fix any cooling system issues promptly.", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-working-with-equipment_23-2148921407.jpg", imageAlt: "AC repair service" }, { - id: "4", title: "Diagnosis", description: "Thorough fault diagnosis to identify problems with your system. We provide detailed reports and recommended solutions.", imageSrc: "http://img.b2bpic.net/free-photo/electrician-is-mounting-electric-sockets-white-wall-indoors_169016-17800.jpg", imageAlt: "AC system diagnosis" + id: 4, + title: "Diagnosis", description: "Thorough fault diagnosis to identify problems with your system. We provide detailed reports and recommended solutions.", imageSrc: "http://img.b2bpic.net/free-photo/electrician-is-mounting-electric-sockets-white-wall-indoors_169016-17800.jpg", imageAlt: "AC system diagnosis" } ]} textboxLayout="default" @@ -191,4 +195,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1 From ffc7247f4fa0e75313238936b78718b682ab25df Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 17:11:22 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- src/components/shared/SvgTextLogo/SvgTextLogo.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 5c6b4ca..8cfa3c3 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -3,7 +3,7 @@ import React from 'react'; interface SvgTextLogoProps { text: string; className?: string; - dominantBaseline?: 'auto' | 'middle' | 'hanging' | 'baseline'; + dominantBaseline?: 'auto' | 'middle' | 'hanging' | 'alphabetic' | 'ideographic' | 'mathematical' | 'text-before-edge' | 'central' | 'text-after-edge' | 'use-script' | 'no-change' | 'reset-size' | 'inherit'; } export const SvgTextLogo: React.FC = ({ @@ -31,4 +31,4 @@ export const SvgTextLogo: React.FC = ({ ); }; -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1