diff --git a/apps/web/app/partners/[slug]/page.tsx b/apps/web/app/partners/[slug]/page.tsx new file mode 100644 index 0000000..14ed231 --- /dev/null +++ b/apps/web/app/partners/[slug]/page.tsx @@ -0,0 +1,94 @@ +import { notFound } from "next/navigation"; +import { Navbar } from "@/components/navbar"; +import { Footer } from "@/components/footer"; +import { PartnerHero } from "@/components/sections/partner-hero"; +import { PartnerBio } from "@/components/sections/partner-bio"; +import { PartnerCTA } from "@/components/sections/partner-cta"; +import { PartnerFeatures } from "@/components/sections/partner-features"; +import { TrustMetricsSection } from "@/components/sections/trust-metrics-section"; +import { BackgroundScroll } from "@/components/ui/background-scroll"; +import { ScrollReveal } from "@/components/ui/scroll-reveal"; + +interface PartnerData { + name: string; + bio: string; + imageUrl: string; + quote?: string; + ctaMessage?: string; +} + +const PARTNERS_DATA: Record = { + "solo-e-tv": { + name: "Solo E TV", + bio: "Solo E started trading with $500–$600 paychecks to fund his music dream. No prop firms, no handouts — just self-taught grit. He burned $100K learning the hard way, mastering risk, discipline, and consistency. \n\nThe breakthrough came flipping $600 to $25K (then losing it), but going live on YouTube and turning $4K into $40K put him on the map. Now he refuses to deposit over $10K, proving small accounts can win big. The Solo E brand is about flipping limits, giving underdogs a system, and proving the world wrong one trade at a time.", + imageUrl: "/images/soloetv.png", + quote: "Life is short and working for other people sucks", + ctaMessage: "Trade with the broker I trust. Join me at RestroFX and experience trading the way it was meant to be. Raw spreads, lightning-fast execution, and a platform that puts you first." + }, + "default": { + name: "Our Global Partner", + bio: "Our partners are experienced traders and market leaders who trust RestroFX for their trading journey. They choose us for our transparency, technology, and superior trading conditions.", + imageUrl: "https://images.unsplash.com/photo-1560250097-0b93528c311a?w=800&auto=format&fit=crop", + ctaMessage: "Join our community of successful traders today." + } +}; + +export async function generateStaticParams() { + return [ + { slug: "solo-e-tv" }, + ]; +} + +export default function PartnerProfilePage({ params }: { params: { slug: string } }) { + const partner = PARTNERS_DATA[params.slug] || PARTNERS_DATA["default"]; + + if (!partner && params.slug !== "demo") { + notFound(); + } + + return ( + <> + + +
+ + +
+ + + +
+ +
+ +
+

+ Why RestroFX is my
favorite broker. +

+
+ +
+
+ +
+ + + +
+ +
+ + + +
+ +
+