My landing page, written in Astro hayden.moe
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 16 lines 239 B view raw
1--- 2interface Props { 3 date: Date; 4} 5const { date } = Astro.props; 6--- 7 8<time datetime={date.toISOString()}> 9 { 10 date.toLocaleDateString('en-us', { 11 year: 'numeric', 12 month: 'short', 13 day: 'numeric', 14 }) 15 } 16</time>