import { Card } from "@/components/ui/card" import { Users, Lightbulb, Code, BookOpen } from "lucide-react" export function AboutSection() { const values = [ { icon: Users, title: "Collaborative", description: "A diverse mix of expertise spanning systems engineering, mathematical modeling, economics, and data science.", }, { icon: Lightbulb, title: "Innovative", description: "Driving innovation that broadens the potential applications of programmable financial primitives.", }, { icon: Code, title: "Open Source", description: "Committed to building reliable tooling that empowers projects and developers in the Web3 ecosystem.", }, { icon: BookOpen, title: "Educational", description: "Simplifying the understanding and implementation of bonding curves to democratize these complex concepts.", }, ] return (

About the BCRG

The Bonding Curve Research Group is an independent, decentralized collective united in our dedication to advancing the understanding and application of bonding curves in crypto-economics. We bring together expertise from multiple disciplines to create tools and knowledge that benefit the entire Web3 community.

{values.map((value, index) => (

{value.title}

{value.description}

))}
) }