Update src/app/adopt/page.tsx

This commit is contained in:
2026-02-13 12:23:19 +00:00
parent f84d1cb71d
commit efe94f4981

View File

@@ -1,6 +1,7 @@
"use client";
import React from "react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { PawPrint, Star, MapPin } from "lucide-react";
@@ -38,7 +39,7 @@ export default function AdoptPage() {
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="pets-list" data-section="pets-list">
@@ -54,7 +55,7 @@ export default function AdoptPage() {
tag="Available Pets"
tagIcon={PawPrint}
gridVariant="four-items-2x2-equal-grid"
animationType="blur-reveal"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
@@ -96,4 +97,4 @@ export default function AdoptPage() {
</div>
</ThemeProvider>
);
}
}