Add src/app/donor-profile/page.tsx

This commit is contained in:
2026-04-06 09:05:51 +00:00
parent 454d7d51c0
commit 5b19b38257

View File

@@ -0,0 +1,20 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
export default function DonorProfile() {
return (
<ThemeProvider>
<NavbarLayoutFloatingInline
navItems={[{ name: "Home", id: "/" }, { name: "Register", id: "/donor-registration" }, { name: "Profile", id: "/donor-profile" }, { name: "Request", id: "/patient-request" }]}
brandName="LifeBlood"
/>
<MetricCardFourteen
title="Your Donor Profile"
tag="Welcome"
metrics={[{id: "1", value: "3", description: "Lives Saved"}, {id: "2", value: "1", description: "Recent Donation"}]}
/>
</ThemeProvider>
);
}