diff --git a/components/roadmap/roadmap-page-header.tsx b/components/roadmap/roadmap-page-header.tsx
index 6bc5a4236..3337fee73 100644
--- a/components/roadmap/roadmap-page-header.tsx
+++ b/components/roadmap/roadmap-page-header.tsx
@@ -1,48 +1,92 @@
import { RoadmapType } from '../../lib/roadmap';
import { NewAlertBanner } from './new-alert-banner';
-import { Button, Link, Stack, Tab, TabList, Tabs, Text } from '@chakra-ui/react';
+import {
+ Box,
+ Button,
+ Container,
+ Heading,
+ Link,
+ Stack,
+ Text,
+} from '@chakra-ui/react';
import { AtSignIcon, DownloadIcon } from '@chakra-ui/icons';
-import { PageHeader } from '../page-header';
import React from 'react';
type RoadmapPageHeaderType = {
roadmap: RoadmapType;
-}
+};
export function RoadmapPageHeader(props: RoadmapPageHeaderType) {
const { roadmap } = props;
return (
- }
- title={roadmap.title}
- subtitle={roadmap.description}
+
-
-
+
+
+
+ {roadmap.title}
+
+ {roadmap.description}
+
+
- {roadmap.pdfUrl && (
- }
- colorScheme='yellow'
- variant='solid'
- _hover={{ textDecoration: 'none' }}>
- Download
+ {roadmap.pdfUrl && (
+ }
+ colorScheme="yellow"
+ variant="solid"
+ _hover={{ textDecoration: 'none' }}
+ >
+ Download
+
+ )}
+ }
+ colorScheme="yellow"
+ variant="solid"
+ _hover={{ textDecoration: 'none' }}
+ >
+ Subscribe
- )}
- }
- colorScheme='yellow' variant='solid' _hover={{ textDecoration: 'none' }}>
- Subscribe
-
-
-
+
+
+
);
}