Merged Ombase's changes from frontend branch with main branch. Created sidebar, dashboard, and not found page. Minor changes to landing page.

This commit is contained in:
K
2025-02-26 19:00:19 +05:30
parent ddb39e4258
commit 7590e81f5c
6 changed files with 889 additions and 5 deletions
@@ -0,0 +1,21 @@
import React from "react";
import Sidebar from "../../components/Sidebar";
const Dashboard = () => {
return (
<>
<Sidebar />
<div className="p-4 sm:ml-64">
<div className="p-4 border-2 border-gray-200 border-dashed rounded-lg mt-14">
<h1 className="text-2xl font-bold mb-4">Dashboard</h1>
<p>
This is your custom dashboard body. Place your widgets, charts,
stats, or other components here.
</p>
</div>
</div>
</>
);
};
export default Dashboard;