This commit is contained in:
TaylorS15
2023-02-12 10:54:41 -05:00
parent c95b436cf1
commit cca92ca32f
2 changed files with 9 additions and 1 deletions

View File

@@ -17,6 +17,7 @@ function MobileNavigation({
setIsApiModalOpen: React.Dispatch<React.SetStateAction<boolean>>;
}) {
//TODO - Need to replace Chat button to open secondary nav with scrollable past chats option and new chat at top
//TODO - Need to add Discord and Github links
return (
<div
className={`${
@@ -68,6 +69,13 @@ function MobileNavigation({
<img src={Link} alt="info" className="ml-2 w-5" />
<p className="my-auto text-eerie-black">Github</p>
</div>
<div
className="flex h-12 cursor-pointer gap-4 rounded-md px-6 hover:bg-gray-100"
onClick={() => setIsApiModalOpen(true)}
>
<img src={Key} alt="info" className="ml-2 w-5" />
<p className="my-auto text-eerie-black">Reset Key</p>
</div>
</nav>
)}
</div>