added: status bar & console (#4922)

* added: status bar & console
This commit is contained in:
naman-bruno
2025-07-14 19:05:57 +05:30
committed by GitHub
parent 48989ceea9
commit b9da31d24e
26 changed files with 3907 additions and 138 deletions

View File

@@ -2,6 +2,7 @@ import { IconBell } from '@tabler/icons';
import { useState } from 'react';
import StyledWrapper from './StyleWrapper';
import Modal from 'components/Modal/index';
import Portal from 'components/Portal';
import { useEffect } from 'react';
import { useApp } from 'providers/App';
import {
@@ -109,7 +110,7 @@ const Notifications = () => {
>
<ToolHint text="Notifications" toolhintId="Notifications" offset={8}>
<IconBell
size={18}
size={16}
aria-hidden
strokeWidth={1.5}
className={`mr-2 ${unreadNotifications?.length > 0 ? 'bell' : ''}`}
@@ -121,6 +122,7 @@ const Notifications = () => {
</a>
{showNotificationsModal && (
<Portal>
<Modal
size="lg"
title="Notifications"
@@ -203,6 +205,7 @@ const Notifications = () => {
)}
</div>
</Modal>
</Portal>
)}
</StyledWrapper>
);