Update src/app/contact/page.tsx

This commit is contained in:
2026-04-15 21:42:51 +00:00
parent d372663f99
commit e67ff26e5d

View File

@@ -2,15 +2,16 @@
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterCard from "@/components/sections/footer/FooterCard";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { MapPin } from "lucide-react";
export default function ContactPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" },
];
@@ -31,25 +32,23 @@ export default function ContactPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={navItems}
brandName="St. Jerome"
button={{ text: "Join Us", href: "/contact" }}
brandName="Coach"
button={{ text: "Contact", href: "/contact" }}
/>
</div>
<main className="pt-32">
<div id="contact" data-section="contact">
<ContactCenter
title="Contact Information"
description="We are located in the heart of our community. Feel free to visit, reach out via phone, or send us a message through our parish office. We look forward to welcoming you."
tag="Visit Us"
tagIcon={MapPin}
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
/>
</div>
</main>
<FooterCard
logoText="St. Jerome"
copyrightText="© 2025 St. Jerome Roman Catholic Church"
<div id="contact" data-section="contact">
<ContactCTA
tag="Contact"
title="Let's Connect"
description="Reach out to us."
buttons={[{ text: "Send Message", href: "#" }]}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
<FooterBaseReveal
logoText="Coach"
columns={[{ title: "Links", items: [{ label: "Home", href: "/" }] }]}
/>
</ReactLenis>
</ThemeProvider>