Skip to content

Commit

Permalink
Improve date semantics
Browse files Browse the repository at this point in the history
  • Loading branch information
marcbouchenoire committed Jan 25, 2022
1 parent 647a2c2 commit fb53162
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/site/src/components/layout/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ export function Footer({ className, ...props }: ComponentProps<"footer">) {
<div className="flex items-center py-6 lg:py-8">
<span className="flex items-center">
<span>
© <span className="hidden sm:inline">{date}</span>
©{" "}
<time className="hidden sm:inline" dateTime={String(date)}>
{date}
</time>
</span>
<span className="text-zinc-300 dark:text-zinc-600 whitespace-pre">
{" "}
Expand Down

0 comments on commit fb53162

Please sign in to comment.