computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
896 B
35 lines
896 B
import { Box, Container, Heading, Text } from '@chakra-ui/react'; |
|
import React from 'react'; |
|
|
|
type PageHeaderProps = { |
|
title: string; |
|
subtitle: string; |
|
children?: React.ReactNode; |
|
}; |
|
|
|
export function PageHeader(props: PageHeaderProps) { |
|
const { title, subtitle, children } = props; |
|
|
|
return ( |
|
<Box pt={['25px', '20px', '45px']} pb={['20px', '15px', '30px']} borderBottomWidth={1} mb='30px'> |
|
<Container maxW='container.md' position='relative'> |
|
<Heading |
|
as='h1' |
|
color='black' |
|
fontSize={['33px', '33px', '40px']} |
|
fontWeight={700} |
|
mb={['2px', '2px', '5px']} |
|
> |
|
{title} |
|
</Heading> |
|
<Text fontSize={['14px', '14px', '15px']}>{subtitle}</Text> |
|
</Container> |
|
|
|
{children && ( |
|
<Container maxW='container.md'> |
|
{children} |
|
</Container> |
|
)} |
|
</Box> |
|
); |
|
}
|
|
|