diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..bfc0850 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,53 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import MediaAbout from "@/components/sections/about/MediaAbout"; +import FooterCard from "@/components/sections/footer/FooterCard"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import { History } from "lucide-react"; + +export default function AboutPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, + ]; + + return ( + + + + + + + + + + ); +} \ No newline at end of file diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index b45d194..2261cd0 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,15 +1,16 @@ "use client"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import ContactCTA from "@/components/sections/contact/ContactCTA"; -import FooterBase from "@/components/sections/footer/FooterBase"; -import ReactLenis from "lenis/react"; +import FooterCard from "@/components/sections/footer/FooterCard"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import { MapPin } from "lucide-react"; export default function ContactPage() { const navItems = [ { name: "Home", id: "/" }, - { name: "Giving", id: "/giving" }, + { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }, ]; @@ -27,18 +28,24 @@ export default function ContactPage() { headingFontWeight="medium" > - - - + + + diff --git a/src/app/mass-schedule/page.tsx b/src/app/mass-schedule/page.tsx new file mode 100644 index 0000000..d5857e5 --- /dev/null +++ b/src/app/mass-schedule/page.tsx @@ -0,0 +1,29 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; + +export default function MassSchedulePage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Mass Schedule", id: "/mass-schedule" }, + { name: "Sacraments", id: "/sacraments" }, + { name: "Staff", id: "/staff" }, + { name: "Giving", id: "/giving" }, + { name: "Contact", id: "/contact" }, + ]; + + return ( + + + + + Mass Schedule + + ({ label: i.name, href: i.id })) }]} /> + + + ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 7fbf967..c2b4e0d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,13 +2,14 @@ import ReactLenis from "lenis/react"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import FooterBase from "@/components/sections/footer/FooterBase"; +import FooterMedia from "@/components/sections/footer/FooterMedia"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel"; -export default function BusinessCoachTemplatePage() { +export default function SaintJeromePage() { const navItems = [ { name: "Home", id: "/" }, - { name: "About", id: "about" }, + { name: "About", id: "/about" }, { name: "Giving", id: "/giving" }, { name: "Contact", id: "/contact" }, ]; @@ -29,18 +30,29 @@ export default function BusinessCoachTemplatePage() { - - Welcome to Coach + + - + - - - Sacraments - The seven sacraments are the life of our Church. - - + + + Sacraments + + ({ label: i.name, href: i.id })) }]} /> ); diff --git a/src/app/staff/page.tsx b/src/app/staff/page.tsx new file mode 100644 index 0000000..58a67bf --- /dev/null +++ b/src/app/staff/page.tsx @@ -0,0 +1,29 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; + +export default function StaffPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Mass Schedule", id: "/mass-schedule" }, + { name: "Sacraments", id: "/sacraments" }, + { name: "Staff", id: "/staff" }, + { name: "Giving", id: "/giving" }, + { name: "Contact", id: "/contact" }, + ]; + + return ( + + + + + Our Staff + + ({ label: i.name, href: i.id })) }]} /> + + + ); +} \ No newline at end of file
The seven sacraments are the life of our Church.