From a7818c1194f1e45fea0115c3abb3aa9a6c33df8d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 19:52:33 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7ca7582..84ad00a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -77,7 +77,7 @@ export default function LandingPage() { { text: "Our Story", href: "#" }, { text: "Meet Our Team", href: "#" } ]} - buttonAnimation="entrance-slide" + buttonAnimation="slide-up" /> From 8954f328a37c7c2ef70f81c528058ff49fdebde7 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 19:52:34 +0000 Subject: [PATCH 2/3] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 59 +++++++------------ 1 file changed, 22 insertions(+), 37 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..1ba6b43 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,36 @@ -"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; + textClassName?: string; + dominantBaseline?: 'auto' | 'hanging' | 'mathematical' | 'central' | 'middle'; } -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 = '', + textClassName = '', + dominantBaseline = 'central', +}) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file From 0c010c23d1617e811ff0360eec6a1b59f917d3d4 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 19:54:28 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 84ad00a..0b1a965 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -190,7 +190,7 @@ export default function LandingPage() { required: true }} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/businesspeople-waiting-queue-check-counter-with-luggage_107420-95784.jpg" + imageSrc="http://img.b2bpic.net/free-photo/businesspeople-waiting-queue-check-counter-with-luggage_107420-95784.jpg?_wi=1" imageAlt="Luxury travel planning consultation" mediaAnimation="slide-up" mediaPosition="right" @@ -200,7 +200,7 @@ export default function LandingPage() {