diff --git a/src/app/sacraments/page.tsx b/src/app/sacraments/page.tsx new file mode 100644 index 0000000..be74f20 --- /dev/null +++ b/src/app/sacraments/page.tsx @@ -0,0 +1,36 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; + +export default function SacramentsPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Mass Times", id: "/mass-times" }, + { 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}

+
+ ))} +
+
+
+
+ ); +} \ No newline at end of file