From ee71fab090a6689d3a0178cadf00fc9c462ca5b4 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 21:37:18 +0000 Subject: [PATCH] Update src/app/sacraments/page.tsx --- src/app/sacraments/page.tsx | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/src/app/sacraments/page.tsx b/src/app/sacraments/page.tsx index be74f20..f1de22e 100644 --- a/src/app/sacraments/page.tsx +++ b/src/app/sacraments/page.tsx @@ -3,6 +3,7 @@ import ReactLenis from "lenis/react"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import FooterBase from "@/components/sections/footer/FooterBase"; export default function SacramentsPage() { const navItems = [ @@ -11,25 +12,15 @@ export default function SacramentsPage() { { name: "Sacraments", id: "/sacraments" }, ]; - const sacraments = [ - "Baptism", "Confirmation", "Eucharist", "Penance", "Anointing of the Sick", "Holy Orders", "Matrimony" - ]; - return ( - + - +

Sacraments

-

The seven sacraments are the life of our Church. Contact the parish office for preparation details.

-
- {sacraments.map((s) => ( -
-

{s}

-
- ))} -
+

The seven sacraments are the life of our Church.

+
);