Update src/app/mission/page.tsx

This commit is contained in:
2026-02-13 12:23:21 +00:00
parent ba5e5ebcb7
commit 0cba21ac24

View File

@@ -1,6 +1,7 @@
"use client";
import React from "react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Heart, Users } from "lucide-react";
@@ -38,7 +39,7 @@ export default function MissionPage() {
headingFontWeight="bold"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay brandName="Golden Paws" navItems={navItems} logoHref="/" />
<NavbarLayoutFloatingOverlay brandName="Golden Paws" navItems={navItems} button={{ text: "Adopt Now", href: "/adopt" }} />
</div>
<div id="mission-hero" data-section="mission-hero">
@@ -88,4 +89,4 @@ export default function MissionPage() {
</div>
</ThemeProvider>
);
}
}