File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -55,16 +55,20 @@ const LogsPage = () => {
5555 < Link to = "/" className = "text-primary-400 hover:underline flex items-center justify-center gap-2 text-lg mb-4" >
5656 < ArrowLeftIcon size = { 24 } /> Back to Home
5757 </ Link >
58- < h1 className = "text-4xl font-bold tracking-tight text-primary-400 sm:text-6xl mb-8 flex items-center" >
58+ < h1 className = "text-4xl font-bold tracking-tight text-primary-400 sm:text-6xl mb-4 flex items-center" >
5959 Logs
6060 </ h1 >
6161 < hr className = "border-gray-700 mb-8" />
62+ < div className = "mb-8 mx-auto p-6 border border-gray-700 rounded-lg shadow-lg text-center bg-gray-900" >
63+ < h2 className = "text-2xl font-semibold tracking-tight text-white" > Legends</ h2 >
64+ < ColorLegends />
65+ </ div >
6266 < div className = "grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8" >
6367 { logs . map ( ( log , index ) => (
6468 < LogCard key = { index } log = { log } index = { index } totalLogs = { logs . length } />
6569 ) ) }
6670 </ div >
67- < ColorLegends />
71+
6872 </ div >
6973 </ div >
7074 ) ;
You can’t perform that action at this time.
0 commit comments