import { Card } from "@/components/ui/card" import { Button } from "@/components/ui/button" import { ExternalLink, Calendar } from "lucide-react" import Link from "next/link" export function ResearchSection() { const publications = [ { title: "Modeling & Simulating Bonding Curves", description: "Introducing our open source library to model and simulate Bonding Curves and discussing our methodology for data science approaches to crypto-economic primitives.", date: "July 21, 2023", link: "https://mirror.xyz/0x8fF6Fe58b468B1F18d2C54e2B0870b4e847C730d/3gTCNW1LcsNd_O8zgfgERXnZhA_8wYyyHkZRe-oxIns", }, { title: "Exploring Bonding Curves: PAMMs vs SAMMs", description: "A comprehensive comparison of Primary and Secondary Automated Market Makers, exploring their different applications in token ecosystems and market design.", date: "June 29, 2023", link: "https://mirror.xyz/0x8fF6Fe58b468B1F18d2C54e2B0870b4e847C730d/1Pxl_fbIPifIQ4_y0xoJGZGEk70qfOM3Gi9nWycm-8k", }, { title: "The Importance of Systems Engineering in Token Design", description: "How modeling and simulating bonding curves enables the exploration of design space and assists in the implementation and deployment of bonding curve ecosystems.", date: "May 28, 2024", link: "https://bonding-curve-research-group.gitbook.io/bonding-curve-research-group-library/modeling-and-simulating-bonding-curves", }, ] return (

Research & Publications

Our research focuses on empirical analysis, practical applications, and in-depth exploration of bonding curves as vital components for crafting robust digital economies in the DeFi ecosystem.

{publications.map((pub, index) => (

{pub.title}

{pub.description}

{pub.date}
))}
) }