Update src/app/admin/page.tsx

This commit is contained in:
2026-03-03 14:08:51 +00:00
parent b846100f9f
commit 424546f5ec

View File

@@ -1,11 +1,10 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import MetricCardTen from '@/components/sections/metrics/MetricCardTen';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { LayoutDashboard, Users, FileText, Settings } from 'lucide-react';
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { LayoutDashboard, Settings } from "lucide-react";
export default function AdminPage() {
return (
@@ -25,12 +24,10 @@ export default function AdminPage() {
<NavbarStyleApple
brandName="Paws Haven"
navItems={[
{ name: "About", id: "about" },
{ name: "Pets", id: "pets" },
{ name: "Adopt", id: "adopt" },
{ name: "Get Involved", id: "involved" },
{ name: "Admin", id: "/admin" },
{ name: "Contact", id: "contact" }
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Pets", id: "/pets" },
{ name: "Contact", id: "#contact" }
]}
/>
</div>
@@ -59,65 +56,28 @@ export default function AdminPage() {
/>
</div>
<div id="management" data-section="management">
<MetricCardTen
metrics={[
{
id: "1", title: "Manage Pet Listings", subtitle: "Add, edit, and remove pet profiles", category: "Listings", value: "24 Active", buttons: [
{ text: "View All", href: "#" },
{ text: "Add New", href: "#" }
]
},
{
id: "2", title: "Adoption Applications", subtitle: "Review and process adoption requests", category: "Applications", value: "8 Pending", buttons: [
{ text: "Review", href: "#" }
]
},
{
id: "3", title: "Volunteer Management", subtitle: "Coordinate volunteers and schedule shifts", category: "Volunteers", value: "42 Active", buttons: [
{ text: "Manage", href: "#" }
]
},
{
id: "4", title: "Finance & Reports", subtitle: "View donations and financial reports", category: "Finance", value: "View Reports", buttons: [
{ text: "Access", href: "#" }
]
}
]}
title="Management Tools"
description="Essential administration and management features for your organization."
tag="Management"
tagIcon={Settings}
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={true}
animationType="slide-up"
carouselMode="buttons"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
columns={[
{
title: "About", items: [
{ label: "Our Mission", href: "about" },
{ label: "Our Mission", href: "/about" },
{ label: "Our Team", href: "#" },
{ label: "Meet Our Pets", href: "pets" }
{ label: "Meet Our Pets", href: "/pets" }
]
},
{
title: "Get Involved", items: [
{ label: "Adopt a Pet", href: "adopt" },
{ label: "Volunteer", href: "involved" },
{ label: "Adopt a Pet", href: "#adopt" },
{ label: "Volunteer", href: "#involved" },
{ label: "Donate", href: "#" }
]
},
{
title: "Resources", items: [
{ label: "Pet Care Tips", href: "#" },
{ label: "FAQ", href: "faq" },
{ label: "Contact Us", href: "contact" }
{ label: "FAQ", href: "#faq" },
{ label: "Contact Us", href: "#contact" }
]
}
]}