File size: 1,113 Bytes
78d0e31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import { BookOpen } from "lucide-react"
import { PageIntro } from "@/components/page-intro"
import { Button } from "@/components/ui/button"

export function JourneyHero() {
  return (
    <PageIntro
      title="Stories of Hope and Transformation"
      subtitle="Flameborn's Journey"
      icon={<BookOpen className="h-6 w-6 text-pulse" />}
      color="pulse"
    >
      <p className="mb-6">
        Step into the Chronicles of Courage - powerful stories from the frontlines of African healthcare. These
        narratives illuminate the path forward and inspire our collective mission to end health injustice.
      </p>

      <div className="flex flex-wrap justify-center gap-4">
        <Button className="bg-pulse hover:bg-flame px-6 py-3 rounded-md text-white font-medium transition-all hover:shadow-[0_0_15px_rgba(255,0,200,0.5)]">
          Read Latest Stories
        </Button>
        <Button className="bg-transparent border border-pulse hover:bg-pulse/10 px-6 py-3 rounded-md text-pulse font-medium transition-all">
          Submit Your Story
        </Button>
      </div>
    </PageIntro>
  )
}