import React from 'react'; import Image from 'next/image'; import Link from 'next/link'; import { Users, Globe, Heart, Code, Github, Twitter, Linkedin, ArrowRight } from 'lucide-react'; export const metadata = { title: 'About Us | OpenStock', description: 'The story behind OpenStock and the Open Dev Society.', }; export default function AboutPage() { return (
{/* Hero Section */}
Open Dev Society

Tools for Everyone.

We believe financial intelligence shouldn't be locked behind paywalls. OpenStock is built by the community, for the community.

{/* Mission Grid */}
} title="Open Access" desc="No premium tiers for core features. Real-time data and insights available to all, forever." color="blue" /> } title="Open Source" desc="Fully transparent codebase. Audit our algorithms, contribute features, and build with us." color="purple" /> } title="Community Driven" desc="Powered by donations and volunteers. We answer to our users, not shareholders." color="red" />
{/* Story Section */}

The Open Dev Society

OpenStock was born from a simple frustration: why are powerful financial tools so expensive?

We are a collective of developers, designers, and financial enthusiasts working under the Open Dev Society banner. Our mission is to democratize software by building high-quality, open-source alternatives to proprietary platforms.

Visit our GitHub
Open Dev Society
{/* Team / Contributors */}

Backed by Amazing Partners

Siray Siray.ai
); } function FeatureCard({ icon, title, desc, color }: any) { const borders: any = { blue: 'hover:border-blue-500/50', purple: 'hover:border-purple-500/50', red: 'hover:border-red-500/50', }; return (
{icon}

{title}

{desc}

); } function SocialButton({ href, icon, label }: any) { return ( {icon} {label} ); }