diff --git a/src/app/admin/page.tsx b/src/app/admin/page.tsx new file mode 100644 index 0000000..2ae3c82 --- /dev/null +++ b/src/app/admin/page.tsx @@ -0,0 +1,130 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import CardStack from "@/components/cardStack/CardStack"; +import { Users, FileText, Newspaper, Brain, BarChart, Bell, CreditCard } from "lucide-react"; + +export default function AdminPage() { + return ( + + + + +
+ +
+ +

User Management

+

Manage user accounts, roles, and permissions.

+
+
+ +

Content Management

+

Create, edit, and publish website content, pages, and media.

+
+
+ +

News Management

+

Oversee news articles, announcements, and blog posts.

+
+
+ +

AI Settings

+

Configure AI-driven features and automations.

+
+
+ +

Website Analytics

+

Monitor website performance, traffic, and user behavior.

+
+
+ +

Alert Management

+

Set up and manage system alerts and notifications.

+
+
+ +

Subscription Management

+

Handle user subscriptions, plans, and billing.

+
+
+
+ + +
+
+ ); +}