Skip to content

Commit d17b026

Browse files
JoeMattclaude
andcommitted
style: improve donate page hero with gradient and polish
Replace flat orange box with gradient-to-br from-orange-700 to-orange-900, subtle radial highlight overlay, and softer text color. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 60627e5 commit d17b026

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

src/app/donate/page.tsx

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,14 @@ export default function DonatePage() {
1212
<div className="min-h-screen bg-gray-950">
1313
<section className="container mx-auto px-4 pt-12">
1414
<div className="max-w-4xl mx-auto">
15-
<div className="bg-orange-700 text-white rounded-lg p-8 text-center shadow-lg shadow-orange-900/30">
16-
<h1 className="text-4xl md:text-5xl font-bold mb-3">Support Development</h1>
17-
<p className="opacity-90">
18-
Your support helps keep iFly fast, polished, and moving forward for iOS and tvOS.
19-
</p>
15+
<div className="relative bg-gradient-to-br from-orange-700 to-orange-900 text-white rounded-2xl p-10 text-center shadow-xl shadow-orange-900/30 overflow-hidden">
16+
<div className="absolute inset-0 -z-0 opacity-10" style={{ backgroundImage: 'radial-gradient(circle at 80% 20%, #fff 0%, transparent 60%)' }} aria-hidden="true" />
17+
<div className="relative z-10">
18+
<h1 className="text-4xl md:text-5xl font-bold mb-3">Support Development</h1>
19+
<p className="text-orange-100 max-w-md mx-auto">
20+
Your support helps keep iFly fast, polished, and moving forward for iOS and tvOS.
21+
</p>
22+
</div>
2023
</div>
2124
</div>
2225
</section>

0 commit comments

Comments
 (0)