We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ebfcbc commit fd71057Copy full SHA for fd71057
1 file changed
www/components/AboutSection.tsx
@@ -80,13 +80,13 @@ export async function AboutSection({ username }: { username: string }) {
80
</p>
81
</div>
82
83
- <div
84
- className="bg-[#B9FF66] rounded-xl p-6 border-1 border-black border-b-4 col-span-2 transition-all duration-300 hover:shadow-lg hover:-translate-y-1 animate-fade-in"
85
- style={{ animationDelay: "500ms" }}
+ {user?.location && (<div
+ className="bg-[#B9FF66] rounded-xl p-6 border-1 border-black border-b-4 col-span-2 transition-all duration-300 hover:shadow-lg hover:-translate-y-1 animate-fade-in"
+ style={{animationDelay: "500ms"}}
86
>
87
<h2 className="text-xl font-bold mb-2">📍 Location</h2>
88
- <p>{user?.location || "Kochi"}</p>
89
- </div>
+ <p>{user?.location}</p>
+ </div>)}
90
91
92
</>
0 commit comments