diff --git a/packages/desktop/src/components/Terminal.tsx b/packages/desktop/src/components/Terminal.tsx index 1a20313..4439cad 100644 --- a/packages/desktop/src/components/Terminal.tsx +++ b/packages/desktop/src/components/Terminal.tsx @@ -1,10 +1,23 @@ import React, { useCallback, useRef } from 'react'; import { Container } from '@mui/system'; -import { Avatar, Box, Grid, Input, Stack, Typography } from '@mui/material'; +import { + Avatar, + Box, + Divider, + Grid, + Input, + List, + ListItem, + ListItemAvatar, + ListItemText, + ListSubheader, + Stack, + Typography, +} from '@mui/material'; import NirvanaLogo from './NirvanaLogo'; import { blueGrey } from '@mui/material/colors'; -import { FiSearch } from 'react-icons/fi'; +import { FiActivity, FiSearch } from 'react-icons/fi'; import KeyboardShortcutLabel from './KeyboardShortcutLabel'; import { useSnackbar } from 'notistack'; import { useKey } from 'react-use'; @@ -44,7 +57,6 @@ export default function Terminal() { @@ -70,6 +82,68 @@ export default function Terminal() { + + + + Priority + + } + > + + + + + + + + Ali Connors + + {" — I'll be in your neighborhood doing errands this…"} + + } + /> + + + + + + + + + + + + to Scott, Alex, Jennifer + + {" — Wish I could come, but I'm out of town this…"} + + } + /> + + + + diff --git a/packages/desktop/src/mui/NirvanaTheme.ts b/packages/desktop/src/mui/NirvanaTheme.ts index 03a52c4..88842bd 100644 --- a/packages/desktop/src/mui/NirvanaTheme.ts +++ b/packages/desktop/src/mui/NirvanaTheme.ts @@ -39,5 +39,19 @@ export const NirvanaTheme = createTheme({ fullWidth: true, }, }, + + MuiListSubheader: { + styleOverrides: { + root: { + '&.MuiListSubheader-root': { + lineHeight: 1, + display: 'flex', + gap: '0.7em', + alignItems: 'center', + backgroundColor: 'transparent', + }, + }, + }, + }, }, });