-
-
+
Pronouns
-
+
{handle}
{profile?.pronouns && (
<>
- ·
+ ·
{profile.pronouns}
>
)}
@@ -42,7 +42,7 @@ export default function ViewProfile({
)}
{profile?.bbsName && (
-
+
BBS
{profile.bbsName}
{profile.bbsDescription && (
-
+
{profile.bbsDescription}
)}
-
+
→
)}
{!profile?.name && !profile?.bio && !profile?.bbsName && !isOwner && (
-
No profile yet.
+
No profile yet.
)}
>
);
diff --git a/web/src/pages/BBS.tsx b/web/src/pages/BBS.tsx
index d20e191..659e70f 100644
--- a/web/src/pages/BBS.tsx
+++ b/web/src/pages/BBS.tsx
@@ -35,7 +35,7 @@ export default function BBSPage() {
if (user && bbs.site.bannedDids.has(user.did))
return (
-
You have been banned from this BBS.
+
You have been banned from this BBS.
);
const isSysop = user && user.did === bbs.identity.did;
@@ -80,7 +80,7 @@ export default function BBSPage() {
<>
{bbs.site.name}
-
{bbs.site.description}
+
{bbs.site.description}
@@ -92,13 +92,13 @@ export default function BBSPage() {
{bbs.site.intro && (
-
+
{bbs.site.intro}
)}
-
+
Boards
@@ -114,7 +114,7 @@ export default function BBSPage() {
-
+
News
@@ -153,7 +153,7 @@ export default function BBSPage() {
{item.title}
- ·
+ ·
{isSysop && (
@@ -164,7 +164,7 @@ export default function BBSPage() {
e.preventDefault();
removeNews(item.tid);
}}
- className="text-xs text-neutral-500 hover:text-red-400"
+ className="text-xs text-neutral-400 hover:text-red-400"
>
delete
@@ -180,14 +180,14 @@ export default function BBSPage() {
{!showAllNews && allNews.length > 3 && (
)}
>
) : (
-
No news yet.
+
No news yet.
)}
>
diff --git a/web/src/pages/Board.tsx b/web/src/pages/Board.tsx
index 99fa28a..004e2fe 100644
--- a/web/src/pages/Board.tsx
+++ b/web/src/pages/Board.tsx
@@ -106,7 +106,7 @@ export default function BoardPage() {
<>
{board.name}
-
{board.description}
+
{board.description}
{user && (
@@ -142,7 +142,7 @@ export default function BoardPage() {
/>
))
) : (
-
No threads yet.
+
No threads yet.
)}
@@ -151,7 +151,7 @@ export default function BoardPage() {
diff --git a/web/src/pages/Dashboard.tsx b/web/src/pages/Dashboard.tsx
index b8b1169..dd54d45 100644
--- a/web/src/pages/Dashboard.tsx
+++ b/web/src/pages/Dashboard.tsx
@@ -25,7 +25,7 @@ type Tab = "inbox" | "threads" | "pinned" | "bbs";
const TAB_STYLE_ACTIVE =
"py-2 border-b-2 text-neutral-200 border-neutral-200 whitespace-nowrap";
const TAB_STYLE_INACTIVE =
- "py-2 border-b-2 text-neutral-500 hover:text-neutral-300 border-transparent whitespace-nowrap";
+ "py-2 border-b-2 text-neutral-400 hover:text-neutral-300 border-transparent whitespace-nowrap";
export default function Dashboard({ data }: { data: DashboardData }) {
const { user, hasBBS, pins, threads, activity } = data;
@@ -83,7 +83,7 @@ export default function Dashboard({ data }: { data: DashboardData }) {
{ key: "bbs", label: "My BBS" },
];
- const loading =
Loading...
;
+ const loading = Loading...
;
return (
<>
@@ -105,7 +105,7 @@ export default function Dashboard({ data }: { data: DashboardData }) {
{tab === "inbox" && (
<>
-
+
Recent replies and quotes from other users.
@@ -120,7 +120,7 @@ export default function Dashboard({ data }: { data: DashboardData }) {
{tab === "threads" && (
<>
-
+
Threads you've posted across all BBSes.
@@ -133,7 +133,7 @@ export default function Dashboard({ data }: { data: DashboardData }) {
{tab === "pinned" && (
<>
-
+
BBSes you've pinned for quick access.
@@ -146,7 +146,7 @@ export default function Dashboard({ data }: { data: DashboardData }) {
{tab === "bbs" && (
<>
-
+
Manage your BBS.
@@ -38,7 +38,7 @@ export default function LoggedOutHome() {
.
-
+
Build a community from your existing account. Tightly curated, fully
portable, open by design.
@@ -67,31 +67,31 @@ export default function LoggedOutHome() {
{tab === "pip" && (
- $ pip install
+ $ pip install
atbbs
{"\n"}
- $ atbbs
+ $ atbbs
)}
{tab === "uv" && (
- $ uv tool
+ $ uv tool
install atbbs
{"\n"}
- $ atbbs
+ $ atbbs
)}
{tab === "brew" && (
- $ brew install
+ $ brew install
alyraffauf/tap/atbbs
{"\n"}
- $ atbbs
+ $ atbbs
)}
{tab === "telnet" && (
- $ telnet
+ $ telnet
tel.atbbs.xyz
)}
diff --git a/web/src/pages/Login.tsx b/web/src/pages/Login.tsx
index c18a7fd..579ec8a 100644
--- a/web/src/pages/Login.tsx
+++ b/web/src/pages/Login.tsx
@@ -57,7 +57,7 @@ export default function Login() {
/>
Log in to atbbs
-
Use any atproto account.
+ Use any atproto account.
{error &&