);
}
diff --git a/frontend/src/components/Testimonials.tsx b/frontend/src/components/Testimonials.tsx
new file mode 100644
index 00000000..50eeb41a
--- /dev/null
+++ b/frontend/src/components/Testimonials.tsx
@@ -0,0 +1,84 @@
+"use client";
+import { motion } from "framer-motion";
+
+const testimonials = [
+ {
+ name: "Emily R., Freelancer",
+ role: "Independent Consultant",
+ quote:
+ "Finfly transformed how I track and save money — the real-time dashboard helped me save 30% more this quarter than ever before.",
+ },
+ {
+ name: "Carlos M., Startup Founder",
+ role: "CEO & Co-Founder - TechStart",
+ quote:
+ "We switched to Finfly and our team uses it daily. The transparency and insights gave us clarity and control we never had.",
+ },
+ {
+ name: "Priya S., Creative Director",
+ role: "Agency Lead - BrightIdeas",
+ quote:
+ "As a busy creative professional, I needed finance tools that are simple yet powerful. Finfly delivers elegant design and serious impact.",
+ },
+];
+
+export default function Testimonials() {
+ return (
+
+
+
+ What customers are saying
+
+
+ Real stories from people using Finfly to take control of their finances.
+
+
+
+
+ {testimonials.map((t, i) => (
+
+
+
+
+
+ “{t.quote}”
+
+
{t.name}
+
{t.role}
+
+ ))}
+
+
+ );
+}
diff --git a/frontend/src/components/features.tsx b/frontend/src/components/features.tsx
new file mode 100644
index 00000000..29d2aeb6
--- /dev/null
+++ b/frontend/src/components/features.tsx
@@ -0,0 +1,149 @@
+"use client";
+import { motion } from "framer-motion";
+
+const features = [
+ {
+ title: "Smart Budgeting",
+ desc: "Automatically categorize transactions, discover spending trends, and receive tailored insights that help you grow your savings effortlessly.",
+ icon: (
+
+ ),
+ },
+ {
+ title: "Goal Tracking",
+ desc: "Visualize your financial ambitions and monitor progress in real-time with beautiful, data-driven charts and milestones.",
+ icon: (
+
+ ),
+ },
+ {
+ title: "Real-Time Insights",
+ desc: "Access a live financial dashboard that brings all your accounts together with intelligent analysis and personalized recommendations.",
+ icon: (
+
+ ),
+ },
+];
+
+export default function Features() {
+ return (
+
+ {/* Background Glow */}
+
+
+
+
+ {/* Header */}
+
+
+ Designed for Modern Money Management
+
+
+
+ Finfly transforms financial tracking into a visual, interactive experience. Precision meets design clarity.
+
+
+ {/* Feature Grid */}
+
+ Finfly empowers you to manage your money with confidence — track spending,
+ set goals, and make data-driven financial decisions that shape your future.
+