interface Resource { title: string; author: string; description: string; link?: string; category: string; } const resources: Resource[] = [ { title: 'The Second London Baptist Confession of Faith (1689)', author: 'Particular Baptists', description: 'A historic Reformed Baptist confession of faith that aligns closely with the Westminster Confession but reflects Baptist distinctives.', link: '/confession', category: 'Confessions', }, { title: 'The Heidelberg Catechism', author: 'Zacharias Ursinus & Caspar Olevianus', description: 'A warm, pastoral Reformed catechism organized around comfort in Christ.', link: 'https://www.ligonier.org/learn/articles/heidelberg-catechism', category: 'Confessions', }, { title: 'Ligonier Ministries', author: 'Founded by R.C. Sproul', description: 'A ministry dedicated to helping Christians know what they believe, why they believe it, how to live it, and how to share it.', link: 'https://www.ligonier.org/', category: 'Websites', }, { title: 'Monergism', author: '', description: 'A comprehensive resource for Reformed theology, including articles, books, and audio resources.', link: 'https://www.monergism.com/', category: 'Websites', }, ]; export default function ResourcesPage() { const categories = Array.from(new Set(resources.map((r) => r.category))); return (

Reformed Resources

This is a curated collection of resources related to Reformed theology and the doctrines of grace. These books, confessions, and websites have been formative in my own theological journey and are recommended for those seeking to deepen their understanding of Reformed thought.

{categories.map((category) => (

{category}

{resources .filter((r) => r.category === category) .map((r) => (

{r.title}

{r.author &&

by {r.author}

}

{r.description}

{r.link && ( Visit Resource )}
))}
))}
); }