diff --git a/src/app/page.tsx b/src/app/page.tsx index 324f368..7f04e66 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -20,7 +20,7 @@ export default function LandingPage() { borderRadius="soft" contentWidth="mediumLarge" sizing="mediumLarge" - background="circleGradient" + background="aurora" cardStyle="layered-gradient" primaryButtonStyle="shadow" secondaryButtonStyle="solid" @@ -46,7 +46,7 @@ export default function LandingPage() { @@ -118,8 +118,7 @@ export default function LandingPage() { { id: "starter", tag: "Starter Plan", price: "₹0", period: "/month", description: "Perfect for new investors exploring opportunities", button: { text: "Start Free", href: "https://app.investorsaathi.com/signup" - }, - featuresTitle: "What's Included:", features: [ + }, featuresTitle: "What's Included:", features: [ "Access to basic investment opportunities", "Monthly portfolio reports", "Mobile app access", "Community forum access" ] }, @@ -127,16 +126,14 @@ export default function LandingPage() { id: "professional", tag: "Professional Plan", tagIcon: Star, price: "₹999", period: "/month", description: "For serious investors seeking premium opportunities", button: { text: "Upgrade Now", href: "https://app.investorsaathi.com/upgrade" - }, - featuresTitle: "What's Included:", features: [ + }, featuresTitle: "What's Included:", features: [ "Access to all investment opportunities", "Weekly performance analytics", "Priority customer support", "Advanced portfolio tools", "Expert webinars and training" ] }, { id: "enterprise", tag: "Enterprise Plan", price: "Custom", period: "pricing", description: "Tailored solutions for high-net-worth individuals", button: { text: "Contact Sales", href: "#contact" - }, - featuresTitle: "What's Included:", features: [ + }, featuresTitle: "What's Included:", features: [ "Dedicated relationship manager", "Customized investment strategies", "Real-time market insights", "Priority deal access", "Personalized reporting", "Unlimited transactions" ] } @@ -159,7 +156,7 @@ export default function LandingPage() { ]} textboxLayout="default" animationType="scale-rotate" - gridVariant="four-items-2x2-equal-grid" + gridVariant="uniform-all-items-equal" useInvertedBackground={false} /> diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..d940973 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,40 @@ -"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; + fontSize?: number; + fontWeight?: string | number; + fill?: 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 = '', + fontSize = 24, + fontWeight = 'bold', + fill = 'currentColor', +}) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file