update notification screen

This commit is contained in:
Ren Amamiya
2023-08-27 10:38:32 +07:00
parent 53227c7050
commit 963328e064
26 changed files with 275 additions and 188 deletions

View File

@@ -130,7 +130,7 @@ export function FeedWidget({ params }: { params: Widget }) {
<div className="bbg-white/10 rounded-xl px-3 py-6">
<div className="flex flex-col items-center gap-4">
<p className="text-center text-sm text-white">
There have been no new postrs.
There have been no new posts.
</p>
</div>
</div>

View File

@@ -128,7 +128,7 @@ export function HashtagWidget({ params }: { params: Widget }) {
<div className="rounded-xl bg-white/10 px-3 py-6">
<div className="flex flex-col items-center gap-4">
<p className="text-center text-sm font-medium text-white">
There have been no new postrs with this hashtag in the last 24 hours.
There have been no new posts with this hashtag in the last 24 hours.
</p>
</div>
</div>

View File

@@ -167,7 +167,7 @@ export function NetworkWidget() {
<div className="rounded-xl bg-white/10 px-3 py-6">
<div className="flex flex-col items-center gap-4">
<p className="text-center text-sm text-white">
You not have any postrs to see yet
You not have any posts to see yet
<br />
Follow more people to have more fun.
</p>

View File

@@ -127,7 +127,7 @@ export function UserWidget({ params }: { params: Widget }) {
<UserProfile pubkey={params.content} />
</div>
<div>
<h3 className="mt-4 px-3 text-lg font-semibold text-white">Latest postrs</h3>
<h3 className="mt-4 px-3 text-lg font-semibold text-white">Latest posts</h3>
<div className="flex h-full w-full flex-col justify-between gap-1.5 pb-10">
{status === 'loading' ? (
<div className="px-3 py-1.5">
@@ -140,7 +140,7 @@ export function UserWidget({ params }: { params: Widget }) {
<div className="rounded-xl bg-white/10 px-3 py-6">
<div className="flex flex-col items-center gap-4">
<p className="text-center text-sm text-white">
No new postr from user in 24 hours ago
No new post from user in 24 hours ago
</p>
</div>
</div>