diff --git a/app/complete-profile/page.tsx b/app/complete-profile/page.tsx index 43b12213..e8390d01 100644 --- a/app/complete-profile/page.tsx +++ b/app/complete-profile/page.tsx @@ -49,6 +49,7 @@ function RegisterComponent() { const fileInputRef = useRef(null); const router = useRouter(); const {data: session, update} = useSession(); + const [showMoreInfo, setShowMoreInfo] = useState(false); const id = session?.user.id @@ -363,7 +364,7 @@ function RegisterComponent() { return (
-
+

Complete Your Profile @@ -476,6 +477,8 @@ function RegisterComponent() { id="age" name="age" type="number" + min="15" + max="100" value={age ?? ''} onChange={(e) => setAge(Number(e.target.value))} className="appearance-none rounded-md relative block w-full px-3 py-2 border border-gray-300 placeholder-gray-500 focus:outline-none focus:ring-blue-500 focus:border-blue-500 focus:z-10 sm:text-sm" @@ -676,7 +679,7 @@ function RegisterComponent() { i.name.toLowerCase() === newInterest.toLowerCase() ) && (
addNewInterest()} >
@@ -695,7 +698,7 @@ function RegisterComponent() { .map((interest) => (
{ toggleInterest(interest.id); setNewInterest(''); @@ -751,18 +754,55 @@ function RegisterComponent() {
-
+
+
+ + {showMoreInfo && ( +
+

To the extent that you are comfortable sharing, consider writing about:

+
    +
  • Your interests and what you're looking for: type of connection, activities to do, etc.
  • +
  • Your availability and timezone
  • +
  • What makes you unique
  • +
  • Your expectations and boundaries
  • +
  • Your intellectual interests (currently exploring, favorite, and least favorite)
  • +
  • Your core values
  • +
  • Your altruistic values: community engagement, social justice, and other cause areas
  • +
  • Your level of education, hobbies, pets, habits, subcultures, diet, emotional sensitivity, sense of humor, ambition, organization, pet peeves, non-negotiables
  • +
  • Your thinking style, results from evidence-based personality tests (e.g., Big 5)
  • +
  • Your physical and mental health: some traits that rub people the wrong way, triggers, therapy, or what you are trying to improve
  • +
  • If interested in romantic relationships, your love languages (giving and receiving), timeline, romantic orientation, family projects, work-life balance, financial goals / habits, career goals, housing situation (renting vs owning), and whether you would date someone who already has kids
  • +
  • What you would like in your ideal person or connection—where they should be similar or different from your own description
  • +
  • Conversation starters or questions
  • +
+
+ )} +