Add src/app/facilities/page.tsx

This commit is contained in:
2026-04-06 09:05:51 +00:00
parent ff6faf803a
commit 9fdba8818d

View File

@@ -0,0 +1,33 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
export default function FacilitiesPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Facilities", id: "/facilities" },
{ name: "Inventory", id: "/inventory" },
{ name: "Schedule", id: "/schedule" },
]}
brandName="LifeBlood"
/>
<main className="pt-32 pb-20 px-6 max-w-7xl mx-auto min-h-screen">
<h1 className="text-4xl font-bold mb-8">Hospital & Facility Management</h1>
<p className="text-lg text-muted-foreground">Manage partner hospitals, track facility capacity, and oversee regional distribution networks.</p>
</main>
<FooterLogoReveal
logoText="LifeBlood"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Contact Support", href: "mailto:support@lifeblood.com" }}
/>
</ReactLenis>
</ThemeProvider>
);
}