Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
2
2023-029
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
2023-029
2023-029
Commits
a47e9457
Commit
a47e9457
authored
Aug 27, 2023
by
Ridma Dilshan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix the Frontend features
parent
1de01cbf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
77 additions
and
33 deletions
+77
-33
Project/Frontend/SignConnectPlus/src/pages/emotion-detection/emotion-audio-detection/list/list.tsx
...s/emotion-detection/emotion-audio-detection/list/list.tsx
+39
-16
Project/Frontend/SignConnectPlus/src/pages/emotion-detection/emotion-video-detection/list/list.tsx
...s/emotion-detection/emotion-video-detection/list/list.tsx
+38
-17
No files found.
Project/Frontend/SignConnectPlus/src/pages/emotion-detection/emotion-audio-detection/list/list.tsx
View file @
a47e9457
// material-ui
// third-party
// project import
import
MainCard
from
'
components/MainCard
'
;
import
ScrollX
from
'
components/ScrollX
'
;
// assets
//types
// ==============================|| List ||============================== //
import
Grid
from
'
@mui/material/Grid
'
;
import
Button
from
'
@mui/material/Button
'
;
// import MicIcon from '@mui/icons-material/Mic'; // Import MicIcon from the correct path
// import CloudUploadOutlinedIcon from '@mui/icons-material/CloudUploadOutlined'; // Import CloudUploadOutlinedIcon from the correct path
const
List
=
()
=>
{
return
(
<
MainCard
content=
{
false
}
>
<
ScrollX
>
{
/* content here */
}
<
h1
>
Sample Page
</
h1
>
<
Grid
container
spacing=
{
2
}
>
<
Grid
item
xs=
{
12
}
md=
{
6
}
>
<
h2
>
Upload or Record
</
h2
>
<
MainCard
>
<
div
style=
{
{
textAlign
:
'
center
'
}
}
>
<
h2
>
Upload Your Files
</
h2
>
<
Button
variant=
"contained"
color=
"primary"
// startIcon={<CloudUploadOutlinedIcon />}
>
Upload
</
Button
>
<
Button
variant=
"contained"
color=
"primary"
// startIcon={<CloudUploadOutlinedIcon />}
>
Record
</
Button
>
</
div
>
</
MainCard
>
</
Grid
>
<
Grid
item
xs=
{
12
}
md=
{
6
}
>
<
h2
>
3D Avatar
</
h2
>
<
MainCard
>
{
/* Content of the second card */
}
{
/* You can put your 3D avatar components here */
}
</
MainCard
>
</
Grid
>
</
Grid
>
</
ScrollX
>
</
MainCard
>
)
}
)
;
}
;
export
default
List
;
Project/Frontend/SignConnectPlus/src/pages/emotion-detection/emotion-video-detection/list/list.tsx
View file @
a47e9457
// material-ui
// third-party
// project import
import
MainCard
from
'
components/MainCard
'
;
import
ScrollX
from
'
components/ScrollX
'
;
// assets
//types
// ==============================|| List ||============================== //
import
Grid
from
'
@mui/material/Grid
'
;
import
Button
from
'
@mui/material/Button
'
;
// import MicIcon from '@mui/icons-material/Mic'; // Import MicIcon from the correct path
// import CloudUploadOutlinedIcon from '@mui/icons-material/CloudUploadOutlined'; // Import CloudUploadOutlinedIcon from the correct path
const
List
=
()
=>
{
return
(
<
MainCard
content=
{
false
}
>
<
ScrollX
>
{
/* content here */
}
<
h1
>
Sample Page 2
</
h1
>
<
Grid
container
spacing=
{
2
}
>
<
Grid
item
xs=
{
12
}
md=
{
6
}
>
<
h2
>
Upload or Live
</
h2
>
<
MainCard
>
<
div
style=
{
{
textAlign
:
'
center
'
}
}
>
<
h2
>
Upload Your Files
</
h2
>
<
Button
variant=
"contained"
color=
"primary"
// startIcon={<CloudUploadOutlinedIcon />}
>
Upload
</
Button
>
<
Button
variant=
"contained"
color=
"primary"
// startIcon={<CloudUploadOutlinedIcon />}
>
Live
</
Button
>
</
div
>
</
MainCard
>
</
Grid
>
<
Grid
item
xs=
{
12
}
md=
{
6
}
>
<
h2
>
3D Avatar
</
h2
>
<
MainCard
>
{
/* Content of the second card */
}
{
/* You can put your 3D avatar components here */
}
</
MainCard
>
</
Grid
>
</
Grid
>
</
ScrollX
>
</
MainCard
>
)
}
)
;
}
;
export
default
List
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment