This commit is contained in:
2025-06-23 09:37:53 +05:30
parent 2fbdf8ab61
commit 54b02541c1
278 changed files with 10134 additions and 7904 deletions

View File

@@ -14,7 +14,7 @@ const Header: React.FC = () => {
return (
<div className="header-container">
<div className="header-content">
<button className="logo-container" onClick={()=>navigate("/Dashboard")}>
<button className="logo-container" onClick={() => navigate("/Dashboard")} title="Back to Dashboard">
<LogoIcon />
</button>
<div className="header-title">

View File

@@ -7,7 +7,7 @@ const Outline: React.FC = () => {
const handleSearchChange = (value: string) => {
setSearchValue(value);
console.log(value); // Log the search value if needed
// console.log(value); // Log the search value if needed
};
const dropdownItems = [

View File

@@ -30,7 +30,7 @@ const SideBarLeft: React.FC = () => {
const handleSearchChange = (value: string) => {
// Log the search value for now
console.log(value);
// console.log(value);
};
return (