This repository was archived by the owner on Mar 17, 2026. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +13
-7
lines changed
app/(basenames)/name/[username]
src/components/Basenames/UsernameProfile Expand file tree Collapse file tree 2 files changed +13
-7
lines changed Original file line number Diff line number Diff 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 (
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments