From e9ad1f736dee730c80c8c7816abce3b70b943169 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 13:43:16 +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 518c22f..7de32b5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -45,7 +45,7 @@ export default function LandingPage() { tag="Est. 2015" tagIcon={Scissors} tagAnimation="slide-up" - background={{ variant: "circleGradient" }} + background={{ variant: "glowing-orb" }} buttons={[ { text: "Book Appointment", href: "contact" }, { text: "View Services", href: "services" } @@ -110,10 +110,10 @@ export default function LandingPage() { tagAnimation="slide-up" members={[ { - id: "1", name: "James Patterson", imageSrc: "http://img.b2bpic.net/free-photo/stylish-bearded-hipster-male-dressed-fleece-shirt-drinks-coffee-hairdresser-s-salon_613910-5661.jpg?_wi=1", imageAlt: "James Patterson, Master Barber" + id: "1", name: "James Patterson", imageSrc: "http://img.b2bpic.net/free-photo/stylish-bearded-hipster-male-dressed-fleece-shirt-drinks-coffee-hairdresser-s-salon_613910-5661.jpg", imageAlt: "James Patterson, Master Barber" }, { - id: "2", name: "Marcus Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/stylish-bearded-hipster-male-dressed-fleece-shirt-drinks-coffee-hairdresser-s-salon_613910-5661.jpg?_wi=2", imageAlt: "Marcus Rodriguez, Senior Barber" + id: "2", name: "Marcus Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/stylish-bearded-hipster-male-dressed-fleece-shirt-drinks-coffee-hairdresser-s-salon_613910-5661.jpg", imageAlt: "Marcus Rodriguez, Senior Barber" } ]} membersAnimation="blur-reveal" @@ -156,7 +156,7 @@ export default function LandingPage() { tagAnimation="slide-up" title="Ready for Your Best Look?" description="Book your appointment today and experience premium barbering at JP Barber. Our expert barbers are ready to give you a cut that turns heads." - background={{ variant: "circleGradient" }} + background={{ variant: "glowing-orb" }} useInvertedBackground={false} inputPlaceholder="Enter your email" buttonText="Schedule Now" -- 2.49.1 From 4573018d3dc078022a74235487b6d6fc805b28e9 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 13:43:16 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 51 +++++-------------- 1 file changed, 14 insertions(+), 37 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..14fc5ce 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,28 @@ -"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; } -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 = '' }) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1