From 35f8ebb6b8544c123e1bdd4606339174545b716e Mon Sep 17 00:00:00 2001 From: OSEH-svg Date: Sat, 26 Jul 2025 21:51:19 +0100 Subject: [PATCH] About page copleted --- src/app/about/page.tsx | 322 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 322 insertions(+) create mode 100644 src/app/about/page.tsx diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..b804449 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,322 @@ +import { Card, CardContent } from "@/components/ui/card" +import { Button } from "@/components/ui/button" +import { Badge } from "@/components/ui/badge" +import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar" +import { + Send, + Users, + Globe, + Shield, + Zap, + Target, + Heart, + Award, + Linkedin, + Twitter, + Github, + ArrowRight, +} from "lucide-react" +import Link from "next/link" +import { ThemeToggle } from "@/components/theme-toggle" + +export default function AboutPage() { + const teamMembers = [ + { + name: "Sarah Chen", + role: "CEO & Co-Founder", + bio: "Former Goldman Sachs VP with 10+ years in fintech and blockchain", + avatar: "SC", + }, + { + name: "Marcus Johnson", + role: "CTO & Co-Founder", + bio: "Ex-Ethereum Foundation developer, expert in Layer 2 solutions", + avatar: "MJ", + }, + { + name: "Priya Patel", + role: "Head of Product", + bio: "Former Stripe PM, passionate about financial inclusion", + avatar: "PP", + }, + { + name: "David Kim", + role: "Lead Engineer", + bio: "StarkNet core contributor, smart contract security specialist", + avatar: "DK", + }, + ] + + const milestones = [ + { year: "2023", event: "Company founded", description: "StarkRemit was born from a vision of financial inclusion" }, + { year: "2023", event: "Seed funding", description: "Raised $2M from leading crypto VCs" }, + { year: "2024", event: "Beta launch", description: "Launched beta version with 1,000+ users" }, + { year: "2024", event: "StarkNet integration", description: "Full integration with StarkNet mainnet" }, + { year: "2024", event: "Global expansion", description: "Expanded to 15+ countries" }, + ] + + const values = [ + { + icon: , + title: "Global Accessibility", + description: "Making financial services accessible to everyone, everywhere", + }, + { + icon: , + title: "Security First", + description: "Your funds and data are protected by cutting-edge security", + }, + { + icon: , + title: "Community Driven", + description: "Building solutions that empower communities to thrive", + }, + { + icon: , + title: "Innovation", + description: "Pushing the boundaries of what's possible in DeFi", + }, + ] + + return ( +
+ {/* Header */} +
+
+
+
+ +
+ StarkRemit +
+
+ + + +
+
+
+ +
+ {/* Hero Section */} +
+ + About StarkRemit + +

+ Empowering Financial Freedom Through{" "} + + Decentralization + +

+

+ We're building the future of finance where everyone has access to fast, affordable, and secure financial + services, regardless of their location or background. +

+
+ + {/* Mission Section */} + + +
+
+
+ +

Our Mission

+
+

+ To democratize access to financial services by leveraging blockchain technology, creating a world + where anyone can send money, save with their community, and access credit based on their on-chain + reputation. +

+
+
+
+ +
+
+

Financial Inclusion

+

+ Bringing financial services to the unbanked and underbanked +

+
+
+
+
+ +
+
+

Innovation

+

+ Pioneering new solutions for age-old financial challenges +

+
+
+
+
+ +
+
+

Trust & Security

+

+ Building transparent, secure systems that users can trust +

+
+
+
+
+
+
+ +
+
+
+
+
+ + {/* Values Section */} +
+
+

Our Values

+

The principles that guide everything we do

+
+
+ {values.map((value, index) => ( + + +
+ {value.icon} +
+

{value.title}

+

{value.description}

+
+
+ ))} +
+
+ + {/* Team Section */} +
+
+

Meet Our Team

+

+ Passionate experts building the future of finance +

+
+
+ {teamMembers.map((member, index) => ( + + + + + {member.avatar} + +

{member.name}

+

{member.role}

+

{member.bio}

+
+ + + +
+
+
+ ))} +
+
+ + {/* Timeline Section */} +
+
+

Our Journey

+

Key milestones in our mission

+
+
+
+ {milestones.map((milestone, index) => ( +
+
+
+ {milestone.year.slice(-2)} +
+
+ + +
+

{milestone.event}

+ {milestone.year} +
+

{milestone.description}

+
+
+
+ ))} +
+
+
+ + {/* Stats Section */} + + +
+

Our Impact

+

Making a difference in the global financial landscape

+
+
+
+
50K+
+
Active Users
+
+
+
$10M+
+
Transferred
+
+
+
25+
+
Countries
+
+
+
99.9%
+
Uptime
+
+
+
+
+ + {/* CTA Section */} +
+ + + +

Join Our Mission

+

+ Be part of the financial revolution. Start using StarkRemit today and experience the future of money. +

+
+ + +
+
+
+
+
+
+ ) +} \ No newline at end of file