Skip to content

Commit

Permalink
fix icon
Browse files Browse the repository at this point in the history
  • Loading branch information
atsuki-t committed Oct 13, 2023
1 parent d5faebf commit f59a9c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/mobliz-clone/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ const TopPage: NextPage = () => {
return (
<div className={`border bg-white p-5${index === 0 ? '' : ' mt-5'}`}>
<div className="list-inline d-flex mb-4">
<p className="me-4">{dateFnsFormat(new Date(data.page.createdAt), 'yyyy.MM.dd')}</p>
<p>{dateFnsFormat(new Date(data.page.updatedAt), 'yyyy.MM.dd')}</p>
<p className="me-4"><i className="fa fa-clock-o me-2" />{dateFnsFormat(new Date(data.page.createdAt), 'yyyy.MM.dd')}</p>
<p><i className="fa fa-repeat me-2" />{dateFnsFormat(new Date(data.page.updatedAt), 'yyyy.MM.dd')}</p>
</div>
<div className="index-preview overflow-hidden">
<a href={`/${data.page._id}`} className="post-title text-decoration-none">
Expand Down

0 comments on commit f59a9c2

Please sign in to comment.