Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/screens/BadgeScreen.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export default function BadgeScreen({ onBack, navigation }) {
</button>
<h1 className='text-xl font-bold'>뱃지 컬렉션</h1>
</div>
<p className='text-white text-opacity-90 text-sm text-center'>
<p className='text-white text-opacity-90 text-sm text-center relative -top-2'>
GreenMap을 이용하고 뱃지를 수집해 보세요 🌱
</p>
</div>
Expand Down
12 changes: 6 additions & 6 deletions src/components/screens/CertificationScreen.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,15 +125,15 @@ export default function CertificationScreen() {
style={{ paddingBottom: 'var(--bottom-nav-inset)' }}
>
{/* Header */}
<div className='bg-gradient-to-br from-[#4CAF50] to-[#8BC34A] px-6 py-8'>
<h1 className='text-3xl font-bold text-white mb-2'>
인증하기
</h1>
<p className='text-white text-opacity-90 text-sm'>
친환경 활동을 인증하고 포인트를 받으세요
<div className="w-full bg-gradient-to-br from-[#4CAF50] to-[#8BC34A] py-10 text-center text-white mb-8 shadow-md">
<h1 className="text-3xl font-bold text-white mb-2">인증하기</h1>
<p className="text-white text-opacity-90 text-sm">
친환경 활동을 인증하고 포인트를 받으세요 🌱
</p>
</div>



<div className='px-6 py-6 space-y-6'>
{/* 인증 타입 선택 */}
<div>
Expand Down
4 changes: 2 additions & 2 deletions src/components/screens/MyPageScreen.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export default function MyPageScreen({ onNavigate }) {
</div>

<div className='bg-white rounded-3xl p-6 shadow-lg'>
<div className='flex items-center gap-4 mb-6'>
<div className='flex items-center gap-7 mb-6'>
<div className='w-20 h-20 rounded-full overflow-hidden bg-white border-4 border-[#4CAF50] flex items-center justify-center shadow-md'>
{profile.avatar ? (
<img
Expand All @@ -138,7 +138,7 @@ export default function MyPageScreen({ onNavigate }) {
<span className='text-4xl'>👤</span>
)}
</div>
<div className='flex-1'>
<div className='flex-1 text-left'>
<h2 className='text-gray-900 font-bold text-xl'>
{profile.nickname || profile.name || '사용자'}
</h2>
Expand Down