Compare commits

...

5 Commits

Author SHA1 Message Date
b7e9576381 Update src/pages/Pricing.tsx 2026-05-07 19:39:17 +00:00
13511fe702 Update src/pages/HomePage.tsx 2026-05-07 19:39:17 +00:00
kudinDmitriyUp
569c3a2c4c feat: match pricing page style to home page 2026-05-07 19:38:45 +00:00
36d3094e78 Merge version_18_1778182339744 into main
Merge version_18_1778182339744 into main
2026-05-07 19:34:41 +00:00
ee93b83224 Merge version_18_1778182339744 into main
Merge version_18_1778182339744 into main
2026-05-07 19:34:27 +00:00
2 changed files with 66 additions and 5 deletions

View File

@@ -155,7 +155,7 @@ export default function HomePage() {
text: "Start Free Trial",
href: "#",
},
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJoeL1kj3KAGCFdKZaVyRTrBRV/a-minimalist-graphic-representing-a-star-1778165800791-0c8ad310.png",
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJoeL1kj3KAGCFdKZaVyRTrBRV/a-minimalist-graphic-representing-a-star-1778165800791-0c8ad310.png?_wi=1",
},
{
tag: "For Growing Businesses",
@@ -172,7 +172,7 @@ export default function HomePage() {
text: "Get Pro Plan",
href: "#",
},
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJoeL1kj3KAGCFdKZaVyRTrBRV/an-abstract-image-symbolizing-a-growing--1778165802033-739245ed.png",
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJoeL1kj3KAGCFdKZaVyRTrBRV/an-abstract-image-symbolizing-a-growing--1778165802033-739245ed.png?_wi=1",
},
{
tag: "For Enterprises",
@@ -189,7 +189,7 @@ export default function HomePage() {
text: "Contact Sales",
href: "#contact",
},
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJoeL1kj3KAGCFdKZaVyRTrBRV/a-powerful-abstract-representation-of-a--1778165802382-ab2df0f2.png",
imageSrc: "https://storage.googleapis.com/webild/users/user_3AJoeL1kj3KAGCFdKZaVyRTrBRV/a-powerful-abstract-representation-of-a--1778165802382-ab2df0f2.png?_wi=1",
},
]}
/>

View File

@@ -1,5 +1,66 @@
import PricingSection from '@/components/sections/pricing/PricingSection';
import PricingMediaCards from '@/components/sections/pricing/PricingMediaCards';
export default function PricingPage() {
return <PricingSection />;
return (
<PricingMediaCards
tag="Flexible Pricing"
title="Plans Designed for Growth"
description="Choose the Finflow plan that best fits your business size and evolving financial demands."
plans={[
{
tag: 'For Startups',
price: '$99',
period: 'per month',
features: [
'Basic Analytics',
'Standard Security',
'500 Transactions/month',
'Email Support',
],
primaryButton: {
text: 'Start Free Trial',
href: '#',
},
imageSrc:
'https://storage.googleapis.com/webild/users/user_3AJoeL1kj3KAGCFdKZaVyRTrBRV/a-minimalist-graphic-representing-a-star-1778165800791-0c8ad310.png?_wi=2',
},
{
tag: 'For Growing Businesses',
price: '$499',
period: 'per month',
features: [
'Advanced Analytics',
'Enhanced Security',
'Unlimited Transactions',
'24/7 Priority Support',
'Automated Reporting',
],
primaryButton: {
text: 'Get Pro Plan',
href: '#',
},
imageSrc:
'https://storage.googleapis.com/webild/users/user_3AJoeL1kj3KAGCFdKZaVyRTrBRV/an-abstract-image-symbolizing-a-growing--1778165802033-739245ed.png?_wi=2',
},
{
tag: 'For Enterprises',
price: 'Custom',
period: 'contact us',
features: [
'All Pro Features',
'Dedicated Account Manager',
'Custom Integrations',
'On-premise Deployment',
'SLA & Compliance Guarantees',
],
primaryButton: {
text: 'Contact Sales',
href: '#contact',
},
imageSrc:
'https://storage.googleapis.com/webild/users/user_3AJoeL1kj3KAGCFdKZaVyRTrBRV/a-powerful-abstract-representation-of-a--1778165802382-ab2df0f2.png?_wi=2',
},
]}
/>
);
}