blob: 9abe9afbbeda64151dbd980106ccab813294bad3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
import Heading from '@components/atoms/headings/heading';
import { FC } from 'react';
import Meta, { type MetaData } from './meta';
import styles from './page-header.module.scss';
export type PageHeaderProps = {
/**
* Set additional classnames to the header element.
*/
className?: string;
/**
* The page introduction.
*/
intro?: string | JSX.Element;
/**
* The page metadata.
*/
meta?: MetaData;
/**
* The page title.
*/
title: string;
};
/**
* PageHeader component
*
* Render a header element with page title, meta and intro.
*/
const PageHeader: FC<PageHeaderProps> = ({
className = '',
intro,
meta,
title,
}) => {
const getIntro = () => {
return typeof intro === 'string' ? (
<div dangerouslySetInnerHTML={{ __html: intro }} />
) : (
<div>{intro}</div>
);
};
return (
<header className={`${styles.wrapper} ${className}`}>
<div className={styles.body}>
<Heading level={1} className={styles.title} withMargin={false}>
{title}
</Heading>
{meta && (
<Meta
data={meta}
className={styles.meta}
layout="column"
itemsLayout="inline"
/>
)}
{intro && getIntro()}
</div>
</header>
);
};
export default PageHeader;
|