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
37 lines
2 KiB
TypeScript
37 lines
2 KiB
TypeScript
'use client'
|
|
import Link from 'next/link'
|
|
export default function JournalPage() {
|
|
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="/thejournal" className="text-gray-600 hover:text-blue-600 font-semibold text-blue-600">The Journal</Link>
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<section className="bg-gradient-to-br from-yellow-50 to-orange-50 py-20">
|
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
|
|
<div className="text-6xl mb-6">📝</div>
|
|
<h1 className="text-5xl font-bold text-gray-900 mb-6">The Journal</h1>
|
|
<p className="text-2xl text-gray-700">Community Stories & Reflections</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">Read inspiring stories from our community members as they navigate their journeys with chronic illness and cancer. Share your own story and inspire others.</p>
|
|
<a href="https://www.morethanadiagnosis.org/thejournal" className="inline-block px-8 py-4 bg-blue-600 text-white font-semibold rounded-lg hover:bg-blue-700">Read Stories</a>
|
|
</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>
|
|
)
|
|
}
|