Skip to content

Commit 6e64fe2

Browse files
committedMar 5, 2025·
update
1 parent bd8eaa7 commit 6e64fe2

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed
 

‎public/deployment-info.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Timestamp: 2025-03-05T13:37:08Z
1+
Timestamp: 2025-03-05T13:42:01Z
22
Repository: https://github.com/acailic/awesome-scalability-talks
33
DeployedAt: https://acailic.github.io/awesome-scalability-talks
4-
Version: aea0a5d
4+
Version: bd8eaa7

‎src/components/layout/Footer.tsx

+13-13
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,20 @@ export default function Footer() {
2727

2828
return (
2929
<footer className="footer">
30-
<p>© 2023 Cozy React Learning Hub. All rights reserved.</p>
31-
<p>Built with React, TypeScript, and lots of ❤️</p>
3230
{deploymentInfo.timestamp && (
33-
<p className="deployment-info">
34-
Last deployed: {isValidDate(deploymentInfo.timestamp)
35-
? new Date(deploymentInfo.timestamp).toLocaleDateString('en-US', {
36-
year: 'numeric',
37-
month: 'long',
38-
day: 'numeric'
39-
})
40-
: 'Invalid date format'}
41-
<a href={deploymentInfo.repository} target="_blank" rel="noopener noreferrer">Repository</a>
42-
{deploymentInfo.version && <span>Version: {deploymentInfo.version}</span>}
43-
</p>
31+
<p className="deployment-info">
32+
Last deployed: {isValidDate(deploymentInfo.timestamp)
33+
? new Date(deploymentInfo.timestamp).toLocaleDateString('en-US', {
34+
year: 'numeric',
35+
month: 'long',
36+
day: 'numeric',
37+
hour: '2-digit',
38+
minute: '2-digit'
39+
})
40+
: 'Invalid date format'}
41+
<a href={deploymentInfo.repository} target="_blank" rel="noopener noreferrer">Repository</a>
42+
{deploymentInfo.version && <span>Version: {deploymentInfo.version}</span>}
43+
</p>
4444
)}
4545
</footer>
4646
);

‎src/components/tag/TagList.css

+3-3
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,10 @@
8888
justify-content: space-between;
8989
align-items: center;
9090
cursor: pointer;
91-
padding: 2px 4px; /* Reduced from 4px 8px */
92-
border-radius: 8px;
91+
padding: 1px 2px; /* Reduced from 4px 8px */
92+
border-radius: 2px;
9393
transition: background-color 0.2s ease;
94-
min-height: 22px; /* Ensure minimum height when collapsed */
94+
min-height: 15px; /* Ensure minimum height when collapsed */
9595
}
9696

9797
.tag-list-header:hover {

0 commit comments

Comments
 (0)
Please sign in to comment.