import React from 'react'; import { generateMetadata as createMetadata } from '@/components/Metadata'; import type { Metadata } from 'next'; interface Resource { title: string; author: string; description: string; link?: string; category: string; } export async function generateMetadata(): Promise { return createMetadata({ title: 'Reformed Resources', description: 'A curated collection of Reformed theology resources including confessions, books, and websites for deepening understanding of the doctrines of grace.', url: 'https://confessionsofgrace.com/resources', type: 'website' }); } export default function ResourcesPage() { 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" }, { title: "Church Finder", author: "", description: "Find a Reformed Baptist church near you using our interactive map.", link: "/church-finder", 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 )}
))}
))}
); }