2022-12-13 04:45:38 +01:00
|
|
|
import { Row, Column } from 'react-basics';
|
2022-10-22 06:33:23 +02:00
|
|
|
import Favicon from 'components/common/Favicon';
|
2022-02-20 02:32:54 +01:00
|
|
|
import OverflowText from 'components/common/OverflowText';
|
2020-08-18 09:51:32 +02:00
|
|
|
import ActiveUsers from './ActiveUsers';
|
|
|
|
import styles from './WebsiteHeader.module.css';
|
|
|
|
|
2023-02-02 03:39:54 +01:00
|
|
|
export default function WebsiteHeader({ websiteId, title, domain, children }) {
|
2020-08-18 09:51:32 +02:00
|
|
|
return (
|
2023-02-02 03:39:54 +01:00
|
|
|
<Row className={styles.header} justifyContent="center">
|
|
|
|
<Column className={styles.title} variant="two">
|
|
|
|
<Favicon domain={domain} />
|
|
|
|
<OverflowText tooltipId={`${websiteId}-title`}>{title}</OverflowText>
|
|
|
|
</Column>
|
|
|
|
<Column className={styles.body} variant="two">
|
|
|
|
<ActiveUsers websiteId={websiteId} />
|
|
|
|
{children}
|
|
|
|
</Column>
|
|
|
|
</Row>
|
2020-08-18 09:51:32 +02:00
|
|
|
);
|
|
|
|
}
|