diff --git a/frontend/assets/styles/base/variables.scss b/frontend/assets/styles/base/variables.scss
index 387049e9..bb4c8f9f 100644
--- a/frontend/assets/styles/base/variables.scss
+++ b/frontend/assets/styles/base/variables.scss
@@ -58,4 +58,11 @@ $card-even-bg: $lightOrange;
$fave-id-color: $french;
// Content
-$subtext-color: $french;
\ No newline at end of file
+$subtext-color: $french;
+
+// Schedule:
+$time-label-bg: $lightOrange-50;
+$time-label-color: $bittersweet;
+$conflict-btn-color: $raspberry;
+$detail-color: $french;
+$system-color: $outer;
\ No newline at end of file
diff --git a/frontend/assets/styles/components/schedule.scss b/frontend/assets/styles/components/schedule.scss
index 721ffd27..39484bb4 100644
--- a/frontend/assets/styles/components/schedule.scss
+++ b/frontend/assets/styles/components/schedule.scss
@@ -7,5 +7,45 @@
}
.schedule-list-time {
- list-style-type: circle;
+ .time-title {
+ background-color: $time-label-bg;
+ color: $time-label-color;
+ font-weight: 700;
+ padding: 2px 5px;
+ }
+
+ .fave-list {
+ display: flex;
+ flex-wrap: wrap;
+ }
+
+ .fave-list-item {
+ margin: 10px;
+ }
+}
+
+.conflicts-btn {
+ border-radius: 5px 5px !important;
+ color: $conflict-btn-color;
+ font-size: 16px;
+}
+
+.fave-title {
+ font-weight: 700;
+ font-size: 18px;
+}
+
+.fave-detail {
+ color: $detail-color;
+ font-size: 14px;
+}
+
+.fave-system {
+ color: $system-color;
+ font-size: 15px;
+}
+
+.fave-description {
+ font-size: 15px;
+ margin-top: 5px;
}
\ No newline at end of file
diff --git a/frontend/components/FaveCard.tsx b/frontend/components/FaveCard.tsx
new file mode 100644
index 00000000..8dca5a47
--- /dev/null
+++ b/frontend/components/FaveCard.tsx
@@ -0,0 +1,113 @@
+import { useState } from 'react';
+import { styled } from '@mui/material/styles';
+import Card from '@mui/material/Card';
+import CardHeader from '@mui/material/CardHeader';
+import CardMedia from '@mui/material/CardMedia';
+import CardContent from '@mui/material/CardContent';
+import CardActions from '@mui/material/CardActions';
+import Collapse from '@mui/material/Collapse';
+import Avatar from '@mui/material/Avatar';
+import IconButton, { IconButtonProps } from '@mui/material/IconButton';
+import Typography from '@mui/material/Typography';
+import { red } from '@mui/material/colors';
+import FavoriteIcon from '@mui/icons-material/Favorite';
+import ShareIcon from '@mui/icons-material/Share';
+import ExpandMoreIcon from '@mui/icons-material/ExpandMore';
+import ExpandLessIcon from '@mui/icons-material/ExpandLess';
+import MoreVertIcon from '@mui/icons-material/MoreVert';
+
+import { NewEvent } from '@/assets/interfaces';
+import findEvent from '@/helpers/findEvent';
+
+interface ExpandMoreProps extends IconButtonProps {
+ expand: boolean;
+}
+
+const ExpandMore = styled((props: ExpandMoreProps) => {
+ const { expand, ...other } = props;
+ return