From a3f85e267c50979c7214eff168901d75ee5c2616 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 22:30:32 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index d2e43c4..2b9bce0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -21,7 +21,7 @@ export default function LandingPage() { borderRadius="rounded" contentWidth="compact" sizing="largeSmall" - background="grid" + background="circleGradient" cardStyle="solid" primaryButtonStyle="double-inset" secondaryButtonStyle="layered" @@ -47,7 +47,7 @@ export default function LandingPage() { description="Join thousands of members achieving their fitness goals with Fit by Thinus. Personalized programs, expert coaching, and a supportive community await you." tag="Premium Fitness Programs" tagIcon={Zap} - background={{ variant: "grid" }} + background={{ variant: "canvas-reveal" }} imageSrc="http://img.b2bpic.net/free-vector/relax-meditation-smartphone-app-template_23-2148627884.jpg" imageAlt="Fitness program dashboard" buttons={[ @@ -65,6 +65,7 @@ export default function LandingPage() { tagIcon={Heart} textboxLayout="default" useInvertedBackground={false} + mediaAnimation="none" bulletPoints={[ { title: "Personalized Programs", description: "Custom workout plans tailored to your goals, fitness level, and lifestyle.", icon: Target }, { title: "Expert Coaching", description: "Real guidance from certified trainers who understand your journey.", icon: Users }, -- 2.49.1 From 99f4267e22ea44c839c555683aedf28e0cc58fa6 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 22:30:32 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 57 +++++++------------ 1 file changed, 21 insertions(+), 36 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..a6339ce 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; + textAnchor?: 'start' | 'middle' | 'end'; + dominantBaseline?: 'auto' | 'text-top' | 'hanging' | 'middle' | 'central' | 'text-bottom' | 'alphabetic' | 'ideographic' | 'mathematical'; } -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 = '', + textAnchor = 'middle', + dominantBaseline = 'middle', +}) => { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo; -- 2.49.1