diff --git a/_components/header.tsx b/_components/header.tsx
index 4658c51..ee4285b 100644
--- a/_components/header.tsx
+++ b/_components/header.tsx
@@ -4,14 +4,20 @@ export interface Props {
author?: {
name: string;
};
+ date: Date;
comp: any;
}
export default function(props: Props) {
+ const dateFormatted = Intl.DateTimeFormat("en-CA", { dateStyle: "long" }).format(props.date);
return (
By {props.author.name}
+ By {props.author.name} on
+ { props.description }{ props.title }
- {props.author &&