Skip to content
This repository was archived by the owner on Oct 10, 2025. It is now read-only.

Commit 9c7386d

Browse files
committed
Update banner styling and text
1 parent f5c6f22 commit 9c7386d

File tree

1 file changed

+20
-15
lines changed

1 file changed

+20
-15
lines changed

packages/tiles-playground/components/Banner.tsx

Lines changed: 20 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,25 @@ import Link from 'next/link';
22

33
export default function Banner() {
44
return (
5-
<div className="bg-yellow-100 border-b border-yellow-200 px-4 py-3">
6-
<div className="flex items-center justify-center text-sm">
7-
<span className="text-yellow-800">
8-
Update: The work on the project has been paused.{' '}
9-
<Link
10-
href="https://ankeshbharti.com/stories/announcing-tiles-notebook-alpha"
11-
className="text-yellow-900 underline hover:text-yellow-700 font-medium"
12-
target="_blank"
13-
rel="noopener noreferrer"
14-
>
15-
Learn more
16-
</Link>
17-
</span>
18-
</div>
5+
<div
6+
style={{
7+
background: '#EEE',
8+
borderBottom: '1px solid #027BFF',
9+
padding: '8px 16px',
10+
textAlign: 'center',
11+
color: '#027BFF',
12+
fontSize: '14px',
13+
}}
14+
>
15+
Work on the project has been paused.{" "}
16+
<Link
17+
href="https://ankeshbharti.com/stories/announcing-tiles-notebook-alpha"
18+
target="_blank"
19+
rel="noopener noreferrer"
20+
style={{ color: '#F00', textDecoration: 'underline', fontWeight: 500 }}
21+
>
22+
Learn more
23+
</Link>
1924
</div>
2025
);
21-
}
26+
}

0 commit comments

Comments
 (0)