Back

How I built our Church Website

23 November 2024

7 min read

Building a church website might sound straightforward, but trust me, it’s a mix of divine intervention and some seriously good tech. Let me walk you through the process, step by step—complete with my favorite tools and a few coding miracles.

Prerequisites

If you know what HTML, CSS, and JavaScript are (and haven’t mistaken them for spells), you’re good to go. Also, be prepared to absorb some technical info along the way—keep those reading glasses handy!

Let’s Start

Every great website begins with… panic. But once I got over that, I broke the project into manageable chunks:

  1. Plan the Structure:
    Pages, sections—think of this as the blueprint.

  2. Set Up the Backend:
    Strapi is like the choir master of my CMS—keeping everything in harmony while I focus on the frontend.

  3. Code the Frontend:
    Astro made this part easy. With its fast rendering and modular design, who wouldn’t be impressed?

  4. Polish and Deploy:
    No one likes a buggy website, so I made sure everything was smooth before going live.

My Choice of Tech

When it comes to building a website, you need the right tools. Here’s what made the cut:

Astro

I consider Astro to be the holy grail of static site generation (and yes, I mean that literally) for several compelling reasons:

Performance Like a Rocket

Astro’s partial hydration ensures that only the JavaScript required for the page is loaded. No unnecessary JS bloat. Your users (and Lighthouse scores) will thank you!

Here’s how Astro’s component-based design makes it easy to use:

---
// This is a simple Astro component
const title = "Welcome";
---

<Layout>
  <h1>{title}</h1>
  <p>This site is built with Astro and loves you back with fast loading times!</p>
</Layout>


No extra JavaScript is shipped unless explicitly needed. You can ship HTML-first, and that’s a blessing!

SEO Made Simple

With Astro’s built-in support for <head> management, adding meta tags, titles, and structured data is as easy as saying a prayer. Here’s an example of a custom <head>:

---
const lang = getLangFromUrl(Astro.url);

interface Props {
	title: string;
}

const { title } = Astro.props;
---
<html lang={lang}>
   <head>
      <meta charset="UTF-8" />
      <meta
      name="description"
	   content="The Gurpur Parish is situated 19 km from Mangalore on the Mangalore-Moodbidri road."
      />
	   <meta name="generator" content={Astro.generator} />
      <title>{title}</title>
   </head>
</html>

For Better SEO Insights

If you’re looking to level up your website’s SEO game, here’s a great article by my friend. It offers a comprehensive guide to getting SEO right. Highly recommended!

Astro’s <Image /> Component

Astro makes image optimization a breeze with its built-in <Image /> component. It automatically optimizes your images for performance and responsiveness, which is a game-changer for any website.

Why Use Astro’s <Image /> Component?

  1. Automatic Image Optimization Astro automatically optimizes images by resizing, compressing, and serving them in modern formats like WebP. It even adds responsive sizes to ensure images look great on all devices.

  2. Responsive by Default With just a few lines of code, your images will adapt to different screen sizes. No more worrying about manually adjusting image sizes for different devices!

  3. Lazy Loading Built-in Astro’s <Image /> component uses lazy loading out of the box, so images are only loaded when they’re in the viewport, improving page load speed.

Example Usage:

---
// Import the Image component from Astro
import { Image } from 'astro:assets';

import pompeiConvent from '~/assets/pompei-convent.jpg';
---

<Image
   src={pompeiConvent}
   alt="Pompei Convent Image"
   width={1200}
   height={800}
   loading="lazy"
/>

Supports Multiple Frontend Frameworks

Astro lets you use React, Vue, Svelte, or no framework at all (good old HTML). It’s like having a buffet where you can mix and match your favorite frameworks.

Here’s an example of how you can integrate React in Astro:

---
// Import a React component in an Astro file
import MyReactComponent from './components/MyReactComponent.jsx';
---

<MyReactComponent />


Astro takes care of bundling this for you without slowing down your site.

Lightning-Fast Development

Astro’s local development server feels snappy and productive. Its instant reloads and clear error messages make debugging a breeze.

Try spinning up a new Astro project with one command:

npm create astro@latest


And voilà! Your project is ready to go. Start the dev server with:

npm run dev

Want to Know More?

If you’re curious about why Astro is such a great choice, check out this article on Medium for more insights into its features and advantages.

Strapi

Strapi is the backend CMS I used to orchestrate all the content for our church website. Think of it as the content conductor, ensuring everything is in perfect harmony.

Why Strapi?

Tailwind CSS

Let’s face it—coming up with CSS class names is a universal struggle. How many times have you stared blankly at your code and ended up with something like Wrapper or Section? Same here. Naming things is hard, and vanilla CSS doesn’t make it easier.

Enter Tailwind CSS: the superhero of utility-first frameworks. Tailwind lets you style your site with pre-defined utility classes right in your markup—no brainstorming required. It turns styling into a dream, not a chore.

Why Tailwind CSS?

PostgreSQL

PostgreSQL, or Postgres for short, is the database powerhouse behind my Strapi setup. It’s reliable, robust, and handles all the data for our church website like a pro.

Why PostgreSQL?


In short, Postgres ensures that all the content I manage in Strapi is stored securely and retrieved lightning-fast whenever needed. It’s the silent hero keeping everything running smoothly.

Hostinger VPS + Coolify

Unlike traditional static hosting, I deployed our church website on Hostinger VPS for better flexibility and control. Coolify makes managing deployments effortless, allowing me to push changes with ease.

Why Hostinger?

Why Coolfy?

Analytics

No church website is complete without knowing who’s visiting. Enter Google Analytics and Microsoft Clarity, the dynamic duo of tracking and insights.

Why These Tools?


Together, they provide the data I need to fine-tune the site and ensure it serves the community effectively.

Git

I used Git for version control to track changes, collaborate efficiently, and manage different versions of my code. It ensures a smooth workflow, allowing me to roll back if needed and keep everything organized. 🚀

Conclusion

Building our church website pompeichurch.in was more than just a technical challenge; it was a journey of trial and error, learning, and divine inspiration. With no predefined design in place, every aspect was shaped by experimentation and a desire to create something meaningful for our community.


From selecting the right tools to optimizing the user experience, each step brought its own lessons and triumphs. The result is a platform that truly serves its purpose—connecting, informing, and inspiring.


This project is open source, and you can check out the source code here: GitHub Repository


Want to see the full list of features and highlights? Check out my LinkedIn post here.


Let’s connect and share ideas—I’d love to hear your thoughts or help you kickstart your next web project. Until then, happy coding (and praying)!🙌