Skip to content

Commit 1210a78

Browse files
committed
legends
1 parent ac77427 commit 1210a78

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/pages/LogsPage.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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
);

0 commit comments

Comments
 (0)