From 9dde0a85fca6c86ebcf945cc4a13583ecfb77d95 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 12 Jun 2026 23:42:39 +0000 Subject: [PATCH] Add src/app/photographer-dashboard/page.tsx --- src/app/photographer-dashboard/page.tsx | 106 ++++++++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 src/app/photographer-dashboard/page.tsx diff --git a/src/app/photographer-dashboard/page.tsx b/src/app/photographer-dashboard/page.tsx new file mode 100644 index 0000000..0772652 --- /dev/null +++ b/src/app/photographer-dashboard/page.tsx @@ -0,0 +1,106 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; +import TextNumberCount from '@/components/text/TextNumberCount'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import { Eye, Download, DollarSign } from "lucide-react"; + +export default function PhotographerDashboardPage() { + return ( + + + +
+ + }, + { + id: "2", icon: Download, + title: "تعداد دانلودها", value: + }, + { + id: "3", icon: DollarSign, + title: "درآمد کل", value: + } + ]} + /> +
+ + +
+ ); +}