Files
2bc34d84-4210-428e-9668-0bc…/src/app/testimonials/page.tsx

170 lines
6.5 KiB
TypeScript

"use client";
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
import MetricCardTen from "@/components/sections/metrics/MetricCardTen";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
export default function TestimonialsPage() {
const navItems = [
{ name: "Home", id: "home" },
{ name: "About", id: "about" },
{ name: "Programs", id: "programs" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Blog", id: "blog" },
{ name: "Contact", id: "contact" },
];
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="mediumSmall"
sizing="largeSmallSizeMediumTitles"
background="noise"
cardStyle="solid"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="solid"
headingFontWeight="bold"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered
brandName="F.C.T.A"
navItems={navItems}
button={{
text: "Enroll Now",
href: "/programs",
}}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTen
title="Success Stories From Our Students"
description="Real traders, real results. Hear from students who transformed their financial future through F.C Trading Academy."
testimonials={[
{
id: "1",
title: "Best Investment in My Trading Journey",
quote:
"Within 3 months of joining F.C.T.A, I went from losing money to consistently profitable. The live sessions with mentors are invaluable and the community support keeps me motivated.",
name: "Amara Johnson",
role: "Forex Trader",
imageSrc:
"http://img.b2bpic.net/free-photo/confdent-businesswoman-walking-with-her-laptop-work-folder-along-city-centre-posing-street_1258-119495.jpg?_wi=3",
},
{
id: "2",
title: "Turned Crypto Trading Into Real Income",
quote:
"The structured curriculum made crypto trading understandable. I now trade 4 hours daily and make more than my day job. The mentors really care about student success.",
name: "David Chen",
role: "Crypto Trader",
imageSrc:
"http://img.b2bpic.net/free-photo/young-business-woman-white-background-business-job_185193-110285.jpg?_wi=3",
},
{
id: "3",
title: "Finally Making Consistent Profits",
quote:
"After years of struggling alone, F.C.T.A gave me the framework and confidence to succeed. The risk management lessons saved me from blowing up my account.",
name: "Zainab Hassan",
role: "Day Trader",
imageSrc:
"http://img.b2bpic.net/free-photo/close-up-competitive-employee_1098-2870.jpg?_wi=3",
},
{
id: "4",
title: "Worth Every Dollar Invested",
quote:
"The mentorship program accelerated my learning by 6 months. My mentor's personalized guidance helped me identify my trading edge. Highly recommend!",
name: "Marcus Williams",
role: "Stock Trader",
imageSrc:
"http://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-eyeglasses-crossed-arms-grey-background_613910-13618.jpg?_wi=3",
},
{
id: "5",
title: "From Beginner to Profitable Trader",
quote:
"I had zero trading experience. Now I'm generating monthly income through forex trading. The academy's support system makes all the difference.",
name: "Fatima Al-Rashid",
role: "Forex Trader",
imageSrc:
"http://img.b2bpic.net/free-photo/man-portrait-posing-loft-modern-space_158595-5366.jpg?_wi=3",
},
{
id: "6",
title: "Best Decision for My Financial Future",
quote:
"The live trading sessions with real-time feedback transformed how I understand market dynamics. I've recovered my investment in the first month of trading.",
name: "James O'Brien",
role: "Options Trader",
imageSrc:
"http://img.b2bpic.net/free-photo/pretty-smiling-business-woman-standing-window_1262-1069.jpg?_wi=3",
},
]}
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardTen
title="Academy Success Metrics"
description="Our track record speaks for itself. Join a community of successful traders worldwide."
metrics={[
{
id: "students",
title: "Active Students",
subtitle: "Learning to trade globally",
category: "Worldwide",
value: "500+",
},
{
id: "profit",
title: "Average Student Profit",
subtitle: "Monthly earnings after 3 months",
category: "Success Rate",
value: "$2.5K+",
},
{
id: "countries",
title: "Countries Represented",
subtitle: "Our global trading community",
category: "International",
value: "45+",
},
{
id: "experience",
title: "Years of Experience",
subtitle: "Combined mentor expertise",
category: "Mentorship",
value: "150+",
},
]}
animationType="scale-rotate"
textboxLayout="centered"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="F.C Trading Academy"
leftLink={{
text: "Privacy Policy",
href: "#",
}}
rightLink={{
text: "Terms of Service",
href: "#",
}}
/>
</div>
</ThemeProvider>
);
}