Add .gitignore Removed node_modules from previous commit Fix task modes Fix task modes Fix task modes Remove node_modules Update basic task modal Add notes functionality Improve UI Setup views Add scopes Fix projects layout Restructure Fix rest of the UI issues Cleanup old views Add .env to .gitignore
16 lines
391 B
TypeScript
16 lines
391 B
TypeScript
import React from 'react';
|
|
|
|
const SidebarHeader: React.FC = () => {
|
|
return (
|
|
<div className="flex justify-center mb-6 mt-2">
|
|
<a
|
|
href="/"
|
|
className="flex justify-center items-center mb-2 no-underline text-gray-900 dark:text-white"
|
|
>
|
|
<span className="text-2xl font-bold mt-1">tududi</span>
|
|
</a>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default SidebarHeader;
|