Skip to content

Commit

Permalink
added disclaimer to basenames profiles
Browse files Browse the repository at this point in the history
  • Loading branch information
brendan-defi committed Nov 26, 2024
1 parent c6a00bf commit 6594216
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion apps/web/app/(basenames)/name/[username]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default async function Username({ params }: UsernameProfileProps) {
await redirectIfNotNameOwner(username);

const usernameProfilePageClasses = classNames(
'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',
'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',
);

return (
Expand Down
18 changes: 12 additions & 6 deletions apps/web/src/components/Basenames/UsernameProfile/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,19 @@ export default function UsernameProfile() {
);

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

0 comments on commit 6594216

Please sign in to comment.