This repository was archived by the owner on Oct 10, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +20
-15
lines changed
packages/tiles-playground/components Expand file tree Collapse file tree 1 file changed +20
-15
lines changed Original file line number Diff line number Diff line change @@ -2,20 +2,25 @@ import Link from 'next/link';
22
33export 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+ }
You can’t perform that action at this time.
0 commit comments