Skip to content

Commit 791fc34

Browse files
committed
feat:ビデオ通話時間を3分から5分に変更
1 parent 78a8966 commit 791fc34

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

frontend/src/app/feedback/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -870,7 +870,7 @@ function FeedbackContent() {
870870
) : (
871871
<div className="max-w-3xl w-full space-y-4 sm:space-y-6 px-2">
872872
{/* Avatar */}
873-
<div className="flex justify-center">
873+
<div className="flex justify-center mt-8 mb-6">
874874
<div className="relative w-24 h-24 sm:w-32 sm:h-32">
875875
<Image
876876
src={feedbackAvatarImageSrc}
@@ -1324,7 +1324,7 @@ function FeedbackContent() {
13241324
<br />
13251325
実際の女性とのビデオ通話で、本物の会話練習に挑戦しましょう。
13261326
</p>
1327-
<Link href="/practice/waiting" className="block">
1327+
<Link href="/test-call" className="block">
13281328
<Button
13291329
size="lg"
13301330
className="w-full rounded-full bg-green-600 hover:bg-green-700 text-white"

frontend/src/app/simulation/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ useEffect(() => {
332332

333333
await startSession();
334334
setConversationStarted(true);
335-
startTimer(3 * 60); // 3 minutes
335+
startTimer(5 * 60); // 10 minutes
336336
} catch (error) {
337337
console.error("Failed to start conversation:", error);
338338
}
@@ -679,7 +679,7 @@ useEffect(() => {
679679
showAdvicePanel ? "text-yellow-300" : "text-primary"
680680
}`}
681681
/>
682-
アドバイス
682+
背景アドバイス
683683
</Button>
684684
</div>
685685
</div>

0 commit comments

Comments
 (0)