import React from 'react'; import Layout from '@/components/Layout'; interface Resource { title: string; author: string; description: string; link?: string; category: string; } const Resources: React.FC = () => { const resources: Resource[] = [ // { // title: "Institutes of the Christian Religion", // author: "John Calvin", // description: "Calvin's magnum opus on systematic theology, covering the doctrines of God, man, salvation, and the church.", // category: "Books" // }, // { // title: "The Bondage of the Will", // author: "Martin Luther", // description: "Luther's defense of the doctrine of total depravity and God's sovereignty in salvation.", // category: "Books" // }, // { // title: "Chosen by God", // author: "R.C. Sproul", // description: "An accessible introduction to the doctrine of predestination.", // category: "Books" // }, { 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" } ]; const categories = Array.from(new Set(resources.map(resource => resource.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(resource => resource.category === category) .map((resource, index) => (

{resource.title}

{resource.author && (

by {resource.author}

)}

{resource.description}

{resource.link && ( Visit Resource )}
))}
))} {/*

Suggest a Resource

Do you have a resource suggestion that would be valuable for readers of this blog? Please use the contact form to share your recommendations.

Contact
*/}
); }; export default Resources;