Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ export function ContentAuthorPage({
month: 'short',
day: 'numeric',
year: 'numeric',
timeZone: 'UTC',
})}
</span>

Expand All @@ -82,6 +83,7 @@ export function ContentAuthorPage({
month: 'short',
day: 'numeric',
year: 'numeric',
timeZone: 'UTC',
})}
</span>
<h3 className='text-[var(--text-primary)] text-base leading-tight tracking-[-0.01em] lg:text-lg'>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@ export function ContentIndexPage({
<span className='text-[var(--text-muted)] text-xs uppercase tracking-[0.1em]'>
{new Date(p.date).toLocaleDateString('en-US', {
month: 'short',
year: '2-digit',
day: 'numeric',
year: 'numeric',
timeZone: 'UTC',
})}
Comment thread
waleedlatif1 marked this conversation as resolved.
</span>
<h3 className='text-[var(--text-primary)] text-lg leading-tight tracking-[-0.01em]'>
Expand Down Expand Up @@ -113,6 +115,7 @@ export function ContentIndexPage({
month: 'short',
day: 'numeric',
year: 'numeric',
timeZone: 'UTC',
})}
</span>

Expand All @@ -122,6 +125,7 @@ export function ContentIndexPage({
month: 'short',
day: 'numeric',
year: 'numeric',
timeZone: 'UTC',
})}
</span>
<h3 className='text-[var(--text-primary)] text-base leading-tight tracking-[-0.01em] lg:text-lg'>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ export function ContentPostPage({
month: 'short',
day: 'numeric',
year: 'numeric',
timeZone: 'UTC',
})}
</time>
<meta itemProp='dateModified' content={post.updated ?? post.date} />
Expand Down Expand Up @@ -152,7 +153,9 @@ export function ContentPostPage({
<span className='text-[var(--text-muted)] text-xs uppercase tracking-[0.1em]'>
{new Date(p.date).toLocaleDateString('en-US', {
month: 'short',
year: '2-digit',
day: 'numeric',
year: 'numeric',
timeZone: 'UTC',
})}
Comment thread
waleedlatif1 marked this conversation as resolved.
</span>
<h3 className='text-[var(--text-primary)] text-lg leading-tight tracking-[-0.01em]'>
Expand Down
Loading