~repos /website

#astro#js#html#css

git clone https://pyrossh.dev/repos/website.git

木 Personal website of pyrossh. Built with astrojs, shiki, vite.



src/components/FormattedDate.astro



---
interface Props {
date: Date;
}
const { date } = Astro.props;
---
<time datetime={date.toISOString()}>
{new Intl.DateTimeFormat('en-GB', { dateStyle: 'long' }).format(new Date(date))}
</time>