Skip to content
This repository was archived by the owner on Mar 17, 2026. It is now read-only.

Commit 5f9afda

Browse files
authored
added disclaimer to basenames profiles (#1304)
1 parent c6a00bf commit 5f9afda

File tree

2 files changed

+13
-7
lines changed
  • apps/web
    • app/(basenames)/name/[username]
    • src/components/Basenames/UsernameProfile

2 files changed

+13
-7
lines changed

apps/web/app/(basenames)/name/[username]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export default async function Username({ params }: UsernameProfileProps) {
3939
await redirectIfNotNameOwner(username);
4040

4141
const usernameProfilePageClasses = classNames(
42-
'mx-auto mt-32 flex min-h-screen w-full max-w-[1440px] flex-col justify-between gap-10 px-4 px-4 pb-40 md:flex-row md:px-8',
42+
'mx-auto mt-32 flex min-h-screen w-full max-w-[1440px] flex-col justify-between gap-10 px-4 px-4 pb-16 md:flex-row md:px-8',
4343
);
4444

4545
return (

apps/web/src/components/Basenames/UsernameProfile/index.tsx

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,19 @@ export default function UsernameProfile() {
1717
);
1818

1919
return (
20-
<div className="mx-auto grid min-h-screen grid-cols-1 gap-10 md:grid-cols-[25rem_minmax(0,1fr)]">
21-
<div className="w-full">
22-
<UsernameProfileSidebar />
23-
</div>
24-
<div className="w-full">
25-
<UsernameProfileContent />
20+
<div className="flex flex-col gap-10 items-center">
21+
<div className="mx-auto grid min-h-screen grid-cols-1 gap-10 md:grid-cols-[25rem_minmax(0,1fr)]">
22+
<div className="w-full">
23+
<UsernameProfileSidebar />
24+
</div>
25+
<div className="w-full">
26+
<UsernameProfileContent />
27+
</div>
2628
</div>
29+
<span className="mt-24">
30+
Content displayed on this profile page is rendered directly from the decentralized Basenames
31+
protocol, and is not maintained or moderated by, nor under the control of, Coinbase.
32+
</span>
2733
</div>
2834
);
2935
}

0 commit comments

Comments
 (0)