From 42e320446b7455d8f16734c8063df7f8adba8327 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Thu, 31 Jul 2025 03:29:20 +0200 Subject: [PATCH] Move prompts --- app/profiles/[id]/page.tsx | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/app/profiles/[id]/page.tsx b/app/profiles/[id]/page.tsx index 50abba32..918bef00 100644 --- a/app/profiles/[id]/page.tsx +++ b/app/profiles/[id]/page.tsx @@ -174,6 +174,20 @@ export default function Post() { )} + {user?.profile?.description && ( +
+

About

+

{user.profile.description}

+
+ )} + + {user?.profile?.contactInfo && ( +
+

Contact

+

{user.profile.contactInfo}

+
+ )} + {user?.profile?.promptAnswers && (
< h2 className="text-sm font-medium text-gray-500 uppercase tracking-wider">Prompt Answers @@ -191,20 +205,6 @@ export default function Post() {
)} - {user?.profile?.description && ( -
-

About

-

{user.profile.description}

-
- )} - - {user?.profile?.contactInfo && ( -
-

Contact

-

{user.profile.contactInfo}

-
- )} - {/*
*/} {/*

Creation Date

*/} {/*

*/}