Improve video recommendation display with concise view and upload time

Update VideoPage.tsx to consolidate video view count and creation date into a single line, enhancing the visual presentation of recommended videos.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 051a65da-1176-4478-a61c-c662f2a15536
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/051a65da-1176-4478-a61c-c662f2a15536/9NQBiz8
This commit is contained in:
sebastjanartic 2025-08-30 21:44:56 +00:00
parent 410e8412eb
commit 646c79feb5

View File

@ -530,9 +530,8 @@ export default function VideoPage() {
}}> }}>
{video.title} {video.title}
</h3> </h3>
<div className="text-xs text-bunny-muted space-y-0.5"> <div className="text-xs text-bunny-muted">
<div>{formatViews(video.views)} views</div> <div>{formatViews(video.views)} views {formatDate(video.createdAt)}</div>
<div>{formatDate(video.createdAt)}</div>
</div> </div>
</div> </div>
</div> </div>