feat: add department dashboard

This commit is contained in:
ARJUN S THAMPI
2026-03-16 17:55:33 +05:30
parent aaa62ae3f5
commit 46bbd8106b
23 changed files with 1621 additions and 684 deletions

View File

@@ -1,13 +1,7 @@
import DashboardLayout from "@/components/layout/DashboardLayout";
import React from "react";
export default function Blog() {
return (
<DashboardLayout>
<h1 className="text-xl font-semibold mb-4">Blog Management</h1>
<button className="px-4 py-2 bg-black text-white rounded">
Create Blog
</button>
</DashboardLayout>
);
function Blog() {
return <div>Blog</div>;
}
export default Blog;