@@ -4,7 +4,7 @@ import { useEffect, useState, useCallback } from 'react';
44import { useRouter } from 'next/navigation' ;
55import { useAuthStore } from '@/store/authStore' ;
66import { motion } from 'motion/react' ;
7- import { User , LogOut , RefreshCw , Heart , CheckCircle , Trophy , HelpCircle , ChevronRight , Ticket } from 'lucide-react' ;
7+ import { User , LogOut , RefreshCw , Heart , CheckCircle , Trophy , HelpCircle , ChevronRight , Ticket , MessageSquareHeart } from 'lucide-react' ;
88import { Button } from '@/components/ui/button' ;
99import { Card , CardContent } from '@/components/ui/card' ;
1010import { Badge } from '@/components/ui/badge' ;
@@ -318,6 +318,38 @@ export default function MyPage() {
318318 </ motion . div >
319319 ) }
320320
321+ { /* 만족도 조사 링크 */ }
322+ < motion . div
323+ initial = { { opacity : 0 , y : 20 } }
324+ animate = { { opacity : 1 , y : 0 } }
325+ transition = { { duration : 0.3 , delay : 0.15 } }
326+ className = "px-4 mt-4"
327+ >
328+ < a
329+ href = "https://forms.gle/xAja9Y5pyuhE3U4GA"
330+ target = "_blank"
331+ rel = "noopener noreferrer"
332+ className = "block"
333+ >
334+ < Card className = "bg-gradient-to-r from-pink-500 to-rose-500 overflow-hidden border-0 shadow-lg hover:shadow-xl transition-shadow" >
335+ < CardContent className = "p-4" >
336+ < div className = "flex items-center justify-between" >
337+ < div className = "flex items-center gap-3" >
338+ < div className = "w-10 h-10 rounded-full bg-white/30 flex items-center justify-center" >
339+ < MessageSquareHeart className = "w-5 h-5 text-white" />
340+ </ div >
341+ < div >
342+ < p className = "text-white/80 text-xs font-medium" > 만족도 조사</ p >
343+ < p className = "text-white text-sm font-semibold" > 모두콘 피드백 남기기</ p >
344+ </ div >
345+ </ div >
346+ < ChevronRight className = "w-5 h-5 text-white/80" />
347+ </ div >
348+ </ CardContent >
349+ </ Card >
350+ </ a >
351+ </ motion . div >
352+
321353 { /* 탭 네비게이션 */ }
322354 < div className = "px-4 mt-6" >
323355 < div className = "flex gap-2 bg-white rounded-xl p-1 shadow-sm" >
0 commit comments