From cfcb97d70cfea064b8c424f4b2bf4d9bd738b2b4 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 19:09: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 ffe2bfa..520e91a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,7 +7,7 @@ import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwent import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import ContactCTA from '@/components/sections/contact/ContactCTA'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import { Clock, Flame, Target, Trophy, Users, Zap } from 'lucide-react'; +import { Clock, Flame, Target, Trophy, Users, Zap, Sparkles } from 'lucide-react'; export default function LandingPage() { return ( @@ -17,7 +17,7 @@ export default function LandingPage() { borderRadius="soft" contentWidth="smallMedium" sizing="large" - background="aurora" + background="circleGradient" cardStyle="layered-gradient" primaryButtonStyle="gradient" secondaryButtonStyle="layered" @@ -72,7 +72,7 @@ export default function LandingPage() { title="Three Powerful Features" description="Everything you need to transform your fitness with AI-powered insights and real-time feedback." tag="Key Features" - tagIcon={Zap} + tagIcon={Sparkles} tagAnimation="slide-up" accordionItems={[ { @@ -131,7 +131,7 @@ export default function LandingPage() { { text: 'Learn More', href: '#features' } ]} buttonAnimation="slide-up" - background={{ variant: 'aurora' }} + background={{ variant: 'plain' }} useInvertedBackground={false} ariaLabel="Physiqo waitlist signup section" /> -- 2.49.1 From 1d28a8baf03aaf9ab3382aea9e25f2b8460599f8 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 19:09:16 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 65 ++++++++----------- 1 file changed, 28 insertions(+), 37 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..dd4179e 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,42 @@ -"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; + fontSize?: number; + fontFamily?: string; + fontWeight?: string | number; + fill?: 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, + fontSize = 48, + fontFamily = 'Arial, sans-serif', + fontWeight = 'bold', + fill = 'currentColor', + className = '', +}) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1