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.

+
);