SEO Fixed and Added Semantic Html Tags (#98)

This commit is contained in:
Awesh Choudhary
2023-03-23 20:01:45 +05:30
committed by GitHub
parent 1789351ab5
commit 2b1ef7be3e
3 changed files with 10 additions and 10 deletions
+4 -4
View File
@@ -40,8 +40,8 @@ export const Sidebar: FC<Props> = ({ loading, conversations, lightMode, selected
}, [searchTerm, conversations]);
return (
<div className={`h-full flex flex-none space-y-2 p-2 flex-col bg-[#202123] w-[260px] z-10 sm:relative sm:top-0 absolute top-12 bottom-0`}>
<div className="flex items-center">
<aside className={`h-full flex flex-none space-y-2 p-2 flex-col bg-[#202123] w-[260px] z-10 sm:relative sm:top-0 absolute top-12 bottom-0`}>
<header className="flex items-center">
<button
className="flex gap-3 p-3 items-center w-full sm:w-[200px] rounded-md hover:bg-gray-500/10 transition-colors duration-200 text-white cursor-pointer text-sm flex-shrink-0 border border-white/20"
onClick={() => {
@@ -61,7 +61,7 @@ export const Sidebar: FC<Props> = ({ loading, conversations, lightMode, selected
size={32}
onClick={onToggleSidebar}
/>
</div>
</header>
{conversations.length > 1 && (
<Search
@@ -96,6 +96,6 @@ export const Sidebar: FC<Props> = ({ loading, conversations, lightMode, selected
onExportConversations={onExportConversations}
onImportConversations={onImportConversations}
/>
</div>
</aside>
);
};