church finder

This commit is contained in:
Austin Bennett
2025-05-29 07:28:35 -05:00
parent af29ac2363
commit ef5e66f412
2 changed files with 43 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
import React from 'react';
import Layout from '@/components/Layout';
const ChurchFinder: React.FC = () => {
return (
<Layout title="RB Church Finder | Confessions of Grace">
<div className="max-w-4xl mx-auto">
<h1 className="text-3xl md:text-4xl font-bold mb-8">Find a Reformed Church Near You</h1>
<div className="bg-white rounded-lg shadow-sm p-6 border border-primary-200 mb-8">
<p className="text-primary-700 mb-4">
Use the map below to search for Reformed Baptist churches in your area. You can zoom in, search by city, or drag the map to explore different regions.
</p>
<div className="w-full aspect-video rounded-md overflow-hidden border border-primary-200 shadow-sm">
<iframe
title="Reformed Church Finder"
src="https://www.google.com/maps/d/embed?mid=1lxWCjrZza0cQ8NIen0PMof9r1kg6zsI&ehbc=2E312F"
width="100%"
height="100%"
style={{ border: 0 }}
allowFullScreen
loading="lazy"
referrerPolicy="no-referrer-when-downgrade"
></iframe>
</div>
</div>
<div className="text-center text-primary-500 text-sm">
<p>
Want your church listed? <a href="https://reformedbaptistchurches.com/form" className="text-accent-dark hover:text-accent">Contact us</a> with your church's info!
</p>
</div>
</div>
</Layout>
);
};
export default ChurchFinder;
+7
View File
@@ -56,6 +56,13 @@ const Resources: React.FC = () => {
description: "A comprehensive resource for Reformed theology, including articles, books, and audio resources.", description: "A comprehensive resource for Reformed theology, including articles, books, and audio resources.",
link: "https://www.monergism.com/", link: "https://www.monergism.com/",
category: "Websites" category: "Websites"
},
{
title: "Church Finder",
author: "",
description: "Find a Reformed Baptist church near you using our interactive map.",
link: "/church-finder",
category: "Websites"
} }
]; ];