File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,10 +20,28 @@ export default function EventDetailsPage() {
2020 }
2121
2222 return (
23- < >
24- < DockLayout >
25- < TagList tags = { event . tags } > </ TagList >
26- </ DockLayout >
27- </ >
23+ < DockLayout >
24+ < div className = "mx-auto max-w-3xl px-4 sm:px-6 lg:px-0" >
25+ < div className = "relative h-56 w-full overflow-hidden rounded-xl bg-gray-200" >
26+ < div className = "absolute -bottom-6 left-6" >
27+ < div className = "h-16 w-16 rounded-full border-4 border-white bg-gray-300" />
28+ </ div >
29+ </ div >
30+
31+ < div className = "mt-10" >
32+ < h1 className = "text-2xl font-semibold" > { event . event_name } </ h1 >
33+
34+ { /* Tags */ }
35+ < div className = "mt-3" >
36+ < TagList tags = { event . tags } />
37+ </ div >
38+
39+ { /* Description */ }
40+ < div className = "mt-6 break-words text-muted-foreground" >
41+ < p > { event . event_description } </ p >
42+ </ div >
43+ </ div >
44+ </ div >
45+ </ DockLayout >
2846 ) ;
2947}
You can’t perform that action at this time.
0 commit comments