import { Card } from "@/components/ui/card" import { Button } from "@/components/ui/button" import { Github, ExternalLink, Star } from "lucide-react" import Link from "next/link" export function OpenSourceSection() { const projects = [ { name: "conding", description: "Python library for modeling, simulation, and analysis of bonding curves. Features data loading from Dune and interactive visualization dashboards.", link: "https://github.com/bonding-curves/conding", topics: ["Python", "Data Science", "Modeling"], }, { name: "Research Papers", description: "Collection of our research publications exploring bonding curves, PAMMs, SAMMs, and their applications in token engineering.", link: "https://mirror.xyz/0x8fF6Fe58b468B1F18d2C54e2B0870b4e847C730d", topics: ["Research", "Token Engineering", "DeFi"], }, { name: "Library Documentation", description: "Comprehensive documentation and guides for understanding and implementing bonding curves in your projects.", link: "https://bonding-curve-research-group.gitbook.io/bonding-curve-research-group-library", topics: ["Documentation", "Tutorials", "Guides"], }, ] return (

Open Source Contributions

All of our work is open source and freely available to the community. We believe in building in public and contributing to the knowledge commons of crypto-economic primitives.

{projects.map((project, index) => (

{project.name}

{project.description}

{project.topics.map((topic, i) => ( {topic} ))}
))}

Join Our Community

Follow our research, contribute to our projects, and join the conversation about bonding curves and token engineering on GitHub and Twitter.

) }