mirror of
https://github.com/trafficlunar/tomodachi-share.git
synced 2026-06-28 14:44:15 +00:00
style: clean up
This commit is contained in:
parent
72ff5c9354
commit
bc7460bd71
6 changed files with 11 additions and 11 deletions
|
|
@ -21,18 +21,18 @@ export default async function ProfilePage({ params, searchParams }: Props) {
|
|||
|
||||
return (
|
||||
<div>
|
||||
<div className="flex gap-4">
|
||||
<div className="flex gap-4 mb-2">
|
||||
<Image
|
||||
src={user?.image ?? "/missing.webp"}
|
||||
alt="profile picture"
|
||||
width={128}
|
||||
height={128}
|
||||
className="rounded-full border-2 border-amber-500 shadow"
|
||||
className="aspect-square rounded-full border-2 border-amber-500 shadow"
|
||||
/>
|
||||
|
||||
<div className="flex flex-col">
|
||||
<h1 className="text-4xl font-extrabold">{user?.name}</h1>
|
||||
<h2 className="text-lg font-semibold">@{user?.username}</h2>
|
||||
<h1 className="text-4xl font-extrabold w-full break-words">{user?.name}</h1>
|
||||
<h2 className="text-lg font-semibold break-words">@{user?.username}</h2>
|
||||
|
||||
<h4 className="mt-auto">
|
||||
Liked <span className="font-bold">{likedMiis}</span> Miis
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue