Introducing the Digital Foyer

Get More First-Time Visitors — Without Rebuilding Your Website

Your homepage has to serve everyone. First-time guests need something built just for them.

✔ We handle the setup — colors, fonts, domain, and forms

✔ No agency. No long-term project. Live in hours.

Compared to a standard homepage

4 min

Visitors stay, read, and decide

$129

one-time, yours to keep

THE PROBLEM

Your Homepage Was Built for People Who Already Belong

Most church websites are digital warehouses — packed with service times, staff pages, ministry calendars, and announcements. That's useful for members. But for the person on the outside? It's overwhelming and it answers none of the questions they're actually asking.

The Digital Foyer is a focused landing page you drop into your social ads and posts. It speaks to one person: the skeptic, the searcher, the first-time visitor who wants to know — "Will I belong here?"

YOUR HOMEPAGE

A Digital Warehouse

Speaks to everyone. Answers everything. Converts no one who is looking in from the outside.

THE DIGITAL FOYER

A Digital Welcome

Speaks to one person: the first-timer. Answers the questions they're afraid to ask. Removes the friction before Sunday.

How it Works

Need to Make Changes Later?

While we get you set it up with some of the technical stuff, we'll make sure you feel confident at any point later making simple changes yourself.

Swap Your Brand in Minutes

Built in Framer with a clean design system — just drop in your colors, fonts, and photos and it looks like yours

Easy to Add Video & Photos

Drop in your own footage and faces so visitors feel like they already know your community before Sunday

Don't Stress Over the Right Words

Every section tells you exactly what it needs to communicate psychologically — so you're never guessing what to write.

Interactive Parking Map

Removes one of the biggest first-visit anxieties before they even show up — they know exactly where to go

THE DIGITAL FOYER TEMPLATE

$129

One-time purchase — no subscription

INCLUDES

Brandable design system — swap colors, fonts & photos in minutes

Guided copy framework — every section tells you what to write

Interactive parking map, video/photo sections, pastor note

Testimonials, FAQ, and full Framer CMS integration

Built for Framer — easy to edit, no coding required

Reach out and let's get a conversation going

Reach out and let's get a conversation going

Reach out and let's get a conversation going

import * as React from "react" export function useReportHeight() { React.useEffect(() => { // 1. Function to send the current scrollHeight to the Parent (Framer) const sendHeight = () => { const height = document.documentElement.scrollHeight window.parent.postMessage({ type: "reportHeight", height }, "*") } // 2. Create an observer to watch for any size changes in the body const observer = new ResizeObserver(() => { sendHeight() }) if (document.body) { observer.observe(document.body) } // 3. Initial call to set the height on first load sendHeight() return () => observer.disconnect() }, []) }