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
+2 -2
View File
@@ -9,7 +9,7 @@ interface Props {
export const Navbar: FC<Props> = ({ selectedConversation, onNewConversation }) => {
return (
<div className="flex justify-between bg-[#202123] py-3 px-4 w-full">
<nav className="flex justify-between bg-[#202123] py-3 px-4 w-full">
<div className="mr-4"></div>
<div className="max-w-[240px] whitespace-nowrap overflow-hidden text-ellipsis">{selectedConversation.name}</div>
@@ -18,6 +18,6 @@ export const Navbar: FC<Props> = ({ selectedConversation, onNewConversation }) =
className="cursor-pointer hover:text-neutral-400"
onClick={onNewConversation}
/>
</div>
</nav>
);
};