Files
ghall.space/src/components/BlogHeader.astro
T
2023-01-19 09:45:12 -05:00

18 lines
292 B
Plaintext

---
import { format } from "date-fns-tz";
interface Props {
title: String;
date: String;
}
const { title, date } = Astro.props;
---
<div class="blog-header">
<h2>{title}</h2>
<h3 style={{ fontSize: "1.1rem" }}>
{`🗓️ ${format(new Date(date), "MMM do, y")}`}
</h3>
</div>