website/_components/header.tsx

26 lines
653 B
TypeScript
Raw Normal View History

2023-07-26 16:34:06 -04:00
export interface Props {
title: string;
description?: string;
author?: {
name: string;
};
date: Date;
2023-07-26 22:02:15 -04:00
comp: any;
2023-07-26 16:34:06 -04:00
}
export default function(props: Props) {
const dateFormatted = Intl.DateTimeFormat("en-CA", { dateStyle: "long" }).format(props.date);
2023-07-26 16:34:06 -04:00
return (
<header className="page-header">
<h1>{ props.title }</h1>
{props.author &&
<p style={{ color: "var(--color-brown)" }}>
By {props.author.name} on <time datetime={props.date.toISOString()}>{dateFormatted}</time>
</p>
}
2023-07-26 22:02:15 -04:00
{props.comp.separator()}
<p className="subheading">{ props.description }</p>
2023-07-26 16:34:06 -04:00
</header>
)
}