From 300872413ce591976f0e28a7bf6a90b19a937a08 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 19:48:25 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 9e0f61a..869b6b2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -64,7 +64,7 @@ export default function LandingPage() { description="With years of specialized experience in working with children with disabilities, I provide compassionate, evidence-based support tailored to each child and family's unique needs. My approach centers on building trust, fostering development, and empowering families with the tools they need." textboxLayout="default" useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/children-spending-time-together-nature_23-2149002850.jpg?_wi=1" + imageSrc="http://img.b2bpic.net/free-photo/children-spending-time-together-nature_23-2149002850.jpg" imageAlt="Specialized educator working with child in outdoor learning environment" mediaAnimation="blur-reveal" bulletPoints={[ @@ -95,7 +95,7 @@ export default function LandingPage() { features={[ { id: 1, - title: "Home Support", description: "I accompany your child in the comfort of your home, providing one-on-one support, developmental guidance, and practical strategies to help your child thrive in their familiar environment. This service includes observing routines, identifying strengths, and working collaboratively with families.", imageSrc: "http://img.b2bpic.net/free-photo/young-mother-with-her-children-pediatrician-appointment_23-2149187499.jpg?_wi=1", imageAlt: "Home-based specialized education support" + title: "Home Support", description: "I accompany your child in the comfort of your home, providing one-on-one support, developmental guidance, and practical strategies to help your child thrive in their familiar environment. This service includes observing routines, identifying strengths, and working collaboratively with families.", imageSrc: "http://img.b2bpic.net/free-photo/young-mother-with-her-children-pediatrician-appointment_23-2149187499.jpg", imageAlt: "Home-based specialized education support" }, { id: 2, @@ -128,11 +128,11 @@ export default function LandingPage() { }, { id: 2, - title: "Personalized Evaluation & Planning", description: "I conduct a thorough assessment of your child's needs, skills, and developmental stage. Together, we create a personalized support plan that outlines clear goals, strategies, and timelines tailored to your family's needs.", imageSrc: "http://img.b2bpic.net/free-photo/children-spending-time-together-nature_23-2149002850.jpg?_wi=2", imageAlt: "Personalized assessment and planning" + title: "Personalized Evaluation & Planning", description: "I conduct a thorough assessment of your child's needs, skills, and developmental stage. Together, we create a personalized support plan that outlines clear goals, strategies, and timelines tailored to your family's needs.", imageSrc: "http://img.b2bpic.net/free-photo/children-spending-time-together-nature_23-2149002850.jpg", imageAlt: "Personalized assessment and planning" }, { id: 3, - title: "Ongoing Support & Adaptation", description: "We begin regular support sessions tailored to your chosen service format. I continuously observe, adapt, and refine our approach based on your child's progress, family feedback, and evolving needs to ensure lasting, meaningful results.", imageSrc: "http://img.b2bpic.net/free-photo/young-mother-with-her-children-pediatrician-appointment_23-2149187499.jpg?_wi=2", imageAlt: "Ongoing support sessions with child" + title: "Ongoing Support & Adaptation", description: "We begin regular support sessions tailored to your chosen service format. I continuously observe, adapt, and refine our approach based on your child's progress, family feedback, and evolving needs to ensure lasting, meaningful results.", imageSrc: "http://img.b2bpic.net/free-photo/young-mother-with-her-children-pediatrician-appointment_23-2149187499.jpg", imageAlt: "Ongoing support sessions with child" } ]} /> -- 2.49.1 From 1dd70c4e2dff22537bb16e38c8ca36a784b5e797 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 19:48:25 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 71 +++++++++---------- 1 file changed, 35 insertions(+), 36 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..5f6b127 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,50 @@ -"use client"; - -import { memo } from "react"; -import useSvgTextLogo from "./useSvgTextLogo"; -import { cls } from "@/lib/utils"; +import React from 'react'; interface SvgTextLogoProps { - logoText: string; - adjustHeightFactor?: number; - verticalAlign?: "top" | "center"; + text: string; className?: string; + width?: number; + height?: number; } -const SvgTextLogo = memo(function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +const SvgTextLogo: React.FC = ({ + text, + className = '', + width = 200, + height = 60, +}) => { return ( + + + - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo; -- 2.49.1