From f9cf9f587083b111031ea0c47b4c7a6fb7ba6e72 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 06:32:36 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 24b57fa..368d809 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -52,13 +52,14 @@ export default function LandingPage() { imageSrc="http://img.b2bpic.net/free-photo/ai-generated-boat-picture_23-2150648009.jpg" imageAlt="Luxury superyacht sailing at sunset" mediaAnimation="opacity" + background={{ variant: 'plain' }} testimonials={[ { name: 'Alexander Sterling', handle: 'CEO, Sterling Ventures', testimonial: 'The most refined maritime experience I\'ve encountered. Every detail speaks to true luxury and attention to perfection.', rating: 5, - imageSrc: 'http://img.b2bpic.net/free-photo/confident-man-leaning-wall_23-2148401390.jpg?_wi=1', + imageSrc: 'http://img.b2bpic.net/free-photo/confident-man-leaning-wall_23-2148401390.jpg', imageAlt: 'professional headshot wealthy male executive' } ]} @@ -278,7 +279,7 @@ export default function LandingPage() { handle: 'Private Collector', testimonial: 'The yacht fleet is impeccably maintained, the crew is exceptionally trained, and the itineraries are thoughtfully designed. Pure excellence.', rating: 5, - imageSrc: 'http://img.b2bpic.net/free-photo/confident-man-leaning-wall_23-2148401390.jpg?_wi=2', + imageSrc: 'http://img.b2bpic.net/free-photo/confident-man-leaning-wall_23-2148401390.jpg', imageAlt: 'professional headshot wealthy male executive' } ]} @@ -331,7 +332,7 @@ export default function LandingPage() { ]} imageSrc="http://img.b2bpic.net/free-photo/young-healthy-calm-woman-doing-yoga-sailing-yacht-boat-sea-island_1153-4007.jpg" imageAlt="Luxury yacht interior cabin modern elegant" - mediaAnimation="fade" + mediaAnimation="opacity" mediaPosition="left" faqsAnimation="blur-reveal" textboxLayout="default" -- 2.49.1 From 71d8f0a6c451800c60dd16c383a81017cc95dd32 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 06:32:36 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 50 +++++-------------- 1 file changed, 12 insertions(+), 38 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..84322ea 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,25 @@ -"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; -- 2.49.1