diff --git a/src/app/page.tsx b/src/app/page.tsx index ec9dac2..722856f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -38,7 +38,7 @@ export default function PricingPage() { borderRadius="pill" contentWidth="medium" sizing="medium" - background="aurora" + background="circleGradient" cardStyle="layered-gradient" primaryButtonStyle="gradient" secondaryButtonStyle="glass" @@ -63,7 +63,7 @@ export default function PricingPage() { @@ -214,7 +214,7 @@ export default function PricingPage() { "Full REST API access for seamless integration with your existing systems and workflows.", reverse: false, media: { imageSrc: - "http://img.b2bpic.net/free-photo/person-talking-colleagues-video-call-communication-using-smartphone-business-meeting-businessman-holding-mobile-phone-online-conference-with-workmates-corporate-office_482257-28475.jpg?_wi=2"}, + "http://img.b2bpic.net/free-photo/person-talking-colleagues-video-call-communication-using-smartphone-business-meeting-businessman-holding-mobile-phone-online-conference-with-workmates-corporate-office_482257-28475.jpg"}, items: [ { icon: Check, text: "Unlimited API calls" }, { icon: Check, text: "Comprehensive documentation" }, @@ -227,7 +227,7 @@ export default function PricingPage() { "Deep insights into your data with custom dashboards, real-time reporting, and predictive analytics.", reverse: true, media: { imageSrc: - "http://img.b2bpic.net/free-photo/call-center-agent-talking-headset-mic-typing-keyboard_482257-125066.jpg?_wi=2"}, + "http://img.b2bpic.net/free-photo/call-center-agent-talking-headset-mic-typing-keyboard_482257-125066.jpg"}, items: [ { icon: TrendingUp, text: "Real-time dashboards" }, { icon: BarChart3, text: "Custom reports" }, @@ -240,7 +240,7 @@ export default function PricingPage() { "Dedicated support team with faster response times and priority handling of your requests.", reverse: false, media: { imageSrc: - "http://img.b2bpic.net/free-photo/manager-giving-instructions-employees_482257-120162.jpg?_wi=2"}, + "http://img.b2bpic.net/free-photo/manager-giving-instructions-employees_482257-120162.jpg"}, items: [ { icon: Phone, text: "24/7 phone support" }, { icon: MessageSquare, text: "Dedicated account manager" }, @@ -256,7 +256,7 @@ export default function PricingPage() { (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', +}) => { + const textLength = text.length; + const estimatedWidth = textLength * fontSize * 0.6; + const padding = 16; + const width = estimatedWidth + padding * 2; + const height = fontSize + padding * 2; return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo;