Archived
church finder
This commit is contained in:
@@ -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;
|
||||
@@ -56,6 +56,13 @@ const Resources: React.FC = () => {
|
||||
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"
|
||||
}
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user