Skip to content

Commit

Permalink
Remove color from date the blog was published
Browse files Browse the repository at this point in the history
  • Loading branch information
caulagi committed Aug 29, 2023
1 parent 9eb4636 commit 59b9347
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/date-formatter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ interface DateFormatterProps {
const DateFormatter: React.FC<DateFormatterProps> = ({ dateString }) => {
const date = parseISO(dateString)
return (
<time dateTime={dateString} className="italic text-purple-500 font-cursive">
<time dateTime={dateString} className="italic font-cursive">
{format(date, 'LLLL d, yyyy')}
</time>
)
Expand Down

0 comments on commit 59b9347

Please sign in to comment.