import { Card } from "@/components/ui/card" import { Button } from "@/components/ui/button" import { BookOpen, Database, LineChart, Code2 } from "lucide-react" import Link from "next/link" export function LibrarySection() { const features = [ { icon: Database, title: "Data Loading", description: "Easy data loading from Dune dashboards for analyzing existing bonding curves deployed on-chain.", }, { icon: LineChart, title: "Interactive Models", description: "Collection of bonding curve models with interactive parameterization and visualization dashboards.", }, { icon: Code2, title: "Python Library", description: 'Open source Python library "conding" for modeling, simulation, and analysis of bonding curves.', }, { icon: BookOpen, title: "Documentation", description: "Comprehensive guides and documentation to help you understand and implement bonding curves.", }, ] return (

BCRG Library

A comprehensive toolkit for exploring the design space of bonding curves, producing re-usable tooling as infrastructure for future research and practical implementations.

{features.map((feature, index) => (

{feature.title}

{feature.description}

))}

Get Started with the Library

Access our comprehensive documentation and tutorials to start modeling and analyzing bonding curves today.

pip install conding
) }