Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-03-09 13:04:27 +00:00

View File

@@ -31,7 +31,6 @@ export default function LandingPage() {
navItems={[
{ name: "Dashboard", id: "dashboard" },
{ name: "Features", id: "features" },
{ name: "Pricing", id: "pricing" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" }
]}
@@ -45,7 +44,7 @@ export default function LandingPage() {
logoText="ExpenseTracker"
description="Simple, intuitive family expense tracking for every household"
buttons={[
{ text: "Start Free Trial", href: "#contact" },
{ text: "Start Free Now", href: "#contact" },
{ text: "Watch Demo", href: "#features" }
]}
imageSrc="http://img.b2bpic.net/free-vector/course-app-interface-concept_23-2148655702.jpg"
@@ -223,26 +222,14 @@ export default function LandingPage() {
<div id="pricing" data-section="pricing">
<PricingCardFive
title="Simple, Transparent Pricing"
description="Choose the plan that works best for your family's needs"
tag="Flexible Plans"
title="All Features Are Free"
description="No hidden fees, no premium plans. Everything is available to all users."
tag="Forever Free"
plans={[
{
id: "basic", tag: "Family Starter", price: "₹99", period: "/month", description: "Perfect for families just starting to track expenses together", button: { text: "Start Free", href: "#contact" },
id: "basic", tag: "Free Forever", price: "₹0", period: "/month", description: "All features included. No credit card required.", button: { text: "Start Free Now", href: "#contact" },
featuresTitle: "What's Included:", features: [
"Up to 3 family members", "Basic expense tracking", "Monthly budget setup", "Transaction history", "Email support"
]
},
{
id: "pro", tag: "Family Pro", price: "₹249", period: "/month", description: "For families who want advanced insights and automation", button: { text: "Start Free Trial", href: "#contact" },
featuresTitle: "What's Included:", features: [
"Up to 8 family members", "AI expense categorization", "Receipt scanner with OCR", "Advanced analytics & reports", "Bill reminder system", "Goal tracking", "Priority support"
]
},
{
id: "premium", tag: "Family Premium", price: "₹499", period: "/month", description: "Everything for complete financial control and family insights", button: { text: "Start Free Trial", href: "#contact" },
featuresTitle: "What's Included:", features: [
"Unlimited family members", "All Pro features", "Subscription tracker", "Cash flow forecasting", "Financial health score", "Custom category management", "Data export & backup", "24/7 phone support", "Custom integrations"
"Unlimited family members", "Unlimited expense tracking", "Full budget management", "Complete transaction history", "All AI features", "Receipt scanner", "Bill reminders", "Financial goals", "Priority email support", "All reports & insights"
]
}
]}
@@ -270,7 +257,7 @@ export default function LandingPage() {
imageSrc: "http://img.b2bpic.net/free-photo/crazy-man-with-piggy-bank-funny-expression_1194-3252.jpg"
},
{
id: "4", name: "Amit & Anjali Patel", handle: "@amitanjali", testimonial: "Managing our household finances together is now so simple. The receipt scanner feature is absolutely fantastic. Worth every rupee!", rating: 5,
id: "4", name: "Amit & Anjali Patel", handle: "@amitanjali", testimonial: "Managing our household finances together is now so simple. The receipt scanner feature is absolutely fantastic. Best expense tracker out there!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/couple-discussing-with-financial-documents-calculator-living-room_107420-84894.jpg"
},
{
@@ -304,10 +291,10 @@ export default function LandingPage() {
id: "3", title: "How accurate is the receipt scanner?", content: "Our AI-powered receipt scanner uses OCR technology with 95%+ accuracy. For printed receipts in good condition, it extracts amount, date, and merchant details automatically. Manual editing is available if needed."
},
{
id: "4", title: "Can I export my financial data?", content: "Yes, our Premium plan includes data export features. You can download your expense history as CSV or PDF files for your records or to use in other financial tools."
id: "4", title: "Can I export my financial data?", content: "Yes, you can download your expense history as CSV or PDF files for your records or to use in other financial tools."
},
{
id: "5", title: "Is there a free trial available?", content: "Yes! We offer a 14-day free trial of our Pro plan with no credit card required. Try all features before deciding if it's right for your family."
id: "5", title: "Is there a free trial available?", content: "We offer everything for free, forever. No trial needed. No credit card required. Start using all features immediately."
},
{
id: "6", title: "How do bill reminders work?", content: "Add recurring bills with due dates, and we'll send you reminders 3 days and 1 day before payment is due. You can customize reminder settings and frequencies for each bill."
@@ -316,7 +303,7 @@ export default function LandingPage() {
id: "7", title: "Can I integrate with my bank?", content: "Currently, you manually add expenses or use our receipt scanner. We're working on bank integration features coming soon for automatic transaction imports."
},
{
id: "8", title: "What happens if I cancel my subscription?", content: "You can cancel anytime without penalties. Your data remains accessible for 30 days after cancellation. You can reactivate your account within that period."
id: "8", title: "What happens if I stop using the app?", content: "Your data remains safe and accessible at any time. You can reactivate your account whenever you want. No data loss or cancellation penalties."
}
]}
useInvertedBackground={true}
@@ -329,7 +316,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactSplitForm
title="Start Your Family's Financial Journey"
description="Join thousands of families who've taken control of their expenses. Sign up today for a 14-day free trial. No credit card required."
description="Join thousands of families who've taken control of their expenses. Sign up today—everything is free forever. No credit card required."
inputs={[
{ name: "fullName", type: "text", placeholder: "Your Full Name", required: true },
{ name: "email", type: "email", placeholder: "Email Address", required: true },
@@ -345,7 +332,7 @@ export default function LandingPage() {
imageAlt="Happy family using ExpenseTracker"
mediaAnimation="slide-up"
mediaPosition="right"
buttonText="Start Free Trial"
buttonText="Get Started Free"
/>
</div>
@@ -363,4 +350,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}