Complete frontend with 10 functional pages: - / (Homepage with all sections: Happy Mail, Connect, Podcast, Resources, Shop, etc) - /podcast (Host profiles and podcast info) - /resources (Resource directory) - /happymail (Happy Mail program details) - /supportgroup (Support group overview) - /groups (Support Circle - The Living Room) - /thejournal (Community stories) - /inlovingmemory (Wings of Remembrance tributes) - /meetus (Connect With Us) - /shop (Product collections) All pages: - Responsive design with Tailwind CSS - Consistent navigation header - Proper internal linking - External links to original site - Professional footer with site map
36 lines
1.8 KiB
TypeScript
36 lines
1.8 KiB
TypeScript
'use client'
|
|
import Link from 'next/link'
|
|
export default function SupportGroupPage() {
|
|
return (
|
|
<main className="min-h-screen bg-white">
|
|
<header className="sticky top-0 z-50 bg-white shadow-sm border-b border-gray-200">
|
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-4">
|
|
<div className="flex items-center justify-between">
|
|
<Link href="/" className="text-2xl font-bold text-gray-900">MoreThanADiagnosis</Link>
|
|
<nav className="hidden md:flex gap-8">
|
|
<Link href="/" className="text-gray-600 hover:text-blue-600">Home</Link>
|
|
<Link href="/supportgroup" className="text-gray-600 hover:text-blue-600 font-semibold text-blue-600">Support Group</Link>
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<section className="bg-gradient-to-br from-blue-50 to-purple-50 py-20">
|
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
|
|
<h1 className="text-5xl font-bold text-gray-900 mb-6">Support Group</h1>
|
|
<p className="text-2xl text-gray-700">Join our community</p>
|
|
</div>
|
|
</section>
|
|
<section className="py-20 bg-white border-t border-gray-200">
|
|
<div className="max-w-3xl mx-auto px-4">
|
|
<p className="text-xl text-gray-700 mb-8">Join our growing community of folks navigating chronic illness and cancer. Connect, share, and find strength together.</p>
|
|
<Link href="/groups" className="inline-block px-8 py-4 bg-blue-600 text-white font-semibold rounded-lg hover:bg-blue-700">Join Now</Link>
|
|
</div>
|
|
</section>
|
|
<footer className="bg-gray-900 text-white py-12 border-t border-gray-800">
|
|
<div className="max-w-7xl mx-auto px-4 text-center">
|
|
<p>© 2025 More Than A Diagnosis. All rights reserved.</p>
|
|
</div>
|
|
</footer>
|
|
</main>
|
|
)
|
|
}
|