🏗 Restructure project, change font to Maple Mono

This commit is contained in:
2025-08-29 12:37:17 -04:00
parent 0733e44d8b
commit b8445f4a1b
63 changed files with 1522 additions and 842 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
---
import { format, add } from 'date-fns';
import CalendarIcon from '../img/svg/calendar.svg';
import CalendarIcon from '../assets/svg/calendar.svg';
interface Props {
title: string;
@@ -17,7 +17,7 @@ const { title, date, slug } = Astro.props;
{slug ? <a href={`/blog/${slug}`}>{title}</a> : title}
</h2>
<div>
<CalendarIcon class="calendar-icon" size={24} />
<CalendarIcon class="calendar-icon" width={24} height={24} />
{format(add(new Date(date), { hours: 6 }), 'MMM do, y')}
</div>
</div>