Add src/app/staff/page.tsx

This commit is contained in:
2026-04-15 21:38:14 +00:00
parent 6b1b0a3522
commit b25cafd853

29
src/app/staff/page.tsx Normal file
View File

@@ -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 (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingInline navItems={navItems} brandName="Coach" button={{ text: "Book a Call", href: "/contact" }} />
<main className="pt-32 min-h-screen px-4">
<h1 className="text-4xl font-bold text-center mb-8">Our Staff</h1>
</main>
<FooterBase logoText="Coach" columns={[{ title: "Navigation", items: navItems.map(i => ({ label: i.name, href: i.id })) }]} />
</ReactLenis>
</ThemeProvider>
);
}