diff --git a/components/roadmap/home-roadmap-item.tsx b/components/roadmap/home-roadmap-item.tsx
index 0eeb2a4de..c1e35485e 100644
--- a/components/roadmap/home-roadmap-item.tsx
+++ b/components/roadmap/home-roadmap-item.tsx
@@ -21,11 +21,18 @@ const bgColorList = [
'teal.200',
'yellow.100',
'green.200',
- 'red.200'
+ 'red.200',
];
export function HomeRoadmapItem(props: RoadmapGridItemProps) {
- const { title, subtitle, isCommunity, colorIndex = 0, url, isUpcoming } = props;
+ const {
+ title,
+ subtitle,
+ isCommunity,
+ colorIndex = 0,
+ url,
+ isUpcoming,
+ } = props;
return (
{isCommunity && (
-
-
+
+
)}
- {title}
- {subtitle}
+
+ {title}
+
+
+ {subtitle}
+
{isUpcoming && (
- Upcoming
-
+
+ Upcoming
+
+
)}
diff --git a/pages/index.tsx b/pages/index.tsx
index 127496ad6..8fb05a162 100644
--- a/pages/index.tsx
+++ b/pages/index.tsx
@@ -53,17 +53,6 @@ export default function Home(props: HomeProps) {
{roadmaps.map((roadmap: RoadmapType, counter: number) => (