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" /> 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