From e98ab8503468477a93f17e16e729a9537aedaf72 Mon Sep 17 00:00:00 2001
From: zyachel
Date: Sun, 1 Jun 2025 13:07:29 +0000
Subject: [PATCH] feat(title): add "interests" in basic info
---
src/components/title/Basic.tsx | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/src/components/title/Basic.tsx b/src/components/title/Basic.tsx
index dfba9c3..eb4ff47 100644
--- a/src/components/title/Basic.tsx
+++ b/src/components/title/Basic.tsx
@@ -86,6 +86,21 @@ const Basic = ({ data, className }: Props) => {
))}
)}
+
+ {!!data.interests.length && (
+
+ Interests:
+ {data.interests.map((interest, i) => (
+
+ {i > 0 && ', '}
+
+ {interest.text}
+
+
+ ))}
+
+ )}
+
Plot:
{data.plot || '-'}