diff --git a/src/app/page.tsx b/src/app/page.tsx index 1d5a113..534c662 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,55 +2,21 @@ import HeroBillboardDashboard from "@/components/sections/hero/HeroBillboardDashboard"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import FeatureBento, { type FeatureCard } from "@/components/sections/feature/FeatureBento"; import FeatureHoverPattern from "@/components/sections/feature/featureHoverPattern/FeatureHoverPattern"; import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; -import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix"; import PricingCardThree from "@/components/sections/pricing/PricingCardThree"; -import FaqDouble from "@/components/sections/faq/FaqDouble"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import { Bot, Brain, Sparkles, User, FileText, Send, CheckCircle, Zap, MessageSquare, CreditCard, HelpCircle, Mail, Activity, Shield, Clock, BarChart3, Layers, FileDown, Receipt, Target, DollarSign, Users, Settings, PieChart } from "lucide-react"; +import { DollarSign, Receipt, Brain, Users, Shield, PieChart, Target, Clock } from "lucide-react"; export default function FinanceAppPage() { const navItems = [ - { name: "Dashboard", id: "features" }, - { name: "Planning", id: "planning" }, + { name: "Features", id: "features" }, { name: "Pricing", id: "pricing" }, { name: "Contact", id: "contact" }, ]; - const features: FeatureCard[] = [ - { - bentoComponent: "3d-task-list", title: "Quick Entry", items: [ - { icon: DollarSign, label: "Coffee - $5", time: "Now" }, - { icon: Receipt, label: "Grocery Scan", time: "10m ago" }, - { icon: CheckCircle, label: "Salary Received", time: "1h ago" }, - { icon: Send, label: "Rent Payment", time: "2h ago" }, - ], - description: "Instantly record income and expenses on the go with smart categorization."}, - { - bentoComponent: "chat", aiIcon: Bot, - userIcon: User, - exchanges: [ - { userMessage: "How much did I spend on dining?", aiResponse: "You've spent $450 on dining this month, which is 10% lower than your average." }, - { userMessage: "Am I on track for my savings?", aiResponse: "Yes! You're currently $200 ahead of your monthly savings goal." }, - ], - placeholder: "Ask FinAI anything...", title: "AI Financial Assistant", description: "Get instant insights, budget advice, and spending reports via natural chat."}, - { - bentoComponent: "3d-card-grid", items: [ - { name: "Budget", icon: Target }, - { name: "Savings", icon: PiggyBankIconMock }, - { name: "Bills", icon: Clock }, - { name: "Reports", icon: FileDown }, - ], - centerIcon: Brain, - title: "Smart Management", description: "Integrated planning tools to help you take full control of your financial health."}, - ]; - - function PiggyBankIconMock(props: any) { return ; } - const pricingPlans = [ { id: "basic", price: "Free", name: "Personal", buttons: [{ text: "Get Started", href: "#" }], @@ -74,70 +40,68 @@ export default function FinanceAppPage() { contentWidth="medium" sizing="medium" background="none" - cardStyle="gradient-bordered" + cardStyle="glass-elevated" primaryButtonStyle="gradient" - secondaryButtonStyle="layered" - headingFontWeight="semibold" + secondaryButtonStyle="glass" + headingFontWeight="normal" > - - -
- +
- - -
+
+ +
+
+ +
+
+ +
+
- +
+ +
+ ); } \ No newline at end of file