* Move frontend to root * Fix backend issues * Remove old routes * Setup Dockerfile * Fix today /tags multiplt requests issue * Fix race condition on today's inbox widget * Fix cors development issue * Fix CORS for Dockerfile * Fix dockerised settings for infinite loop * Fix translation issues * fixup! Fix translation issues --------- Co-authored-by: Your Name <you@example.com>
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;
|