@@ -27,6 +27,27 @@ function InlineLinkTag({ href, children }: { href: string; children: ReactNode }
2727 ) ;
2828}
2929
30+ function InlineExternalLink ( {
31+ href,
32+ children,
33+ className = "" ,
34+ } : {
35+ href : string ;
36+ children : ReactNode ;
37+ className ?: string ;
38+ } ) {
39+ return (
40+ < a
41+ href = { href }
42+ target = "_blank"
43+ rel = "noreferrer"
44+ className = { `ml-[0.08em] mr-[0.24em] inline whitespace-nowrap align-baseline font-mono text-[0.95em] tracking-[0.01em] [word-spacing:0.12em] text-black/75 underline decoration-dotted decoration-black/30 underline-offset-4 transition-colors hover:text-black hover:decoration-black/50 hover:no-underline dark:text-white/75 dark:decoration-white/30 dark:hover:text-white dark:hover:decoration-white/50 ${ className } ` }
45+ >
46+ { children }
47+ </ a >
48+ ) ;
49+ }
50+
3051const releases : Release [ ] = [
3152 {
3253 version : "v0.1.0" ,
@@ -41,7 +62,6 @@ const releases: Release[] = [
4162 { label : "Page actions" , href : "/docs/customization/page-actions" } ,
4263 { label : "Themes" , href : "/docs/themes" } ,
4364 { label : "Reference" , href : "/docs/reference" } ,
44- { label : "Showcase" , href : "/showcase" } ,
4565 ] ,
4666 changes : [
4767 {
@@ -100,6 +120,32 @@ const releases: Release[] = [
100120 and < InlineLinkTag href = "/showcase" > showcase</ InlineLinkTag > website surfaces for
101121 browsing presets, examples, and visual references
102122 </ > ,
123+ < >
124+ Approved showcase sites include
125+ < InlineExternalLink href = "https://orm.farming-labs.dev" className = "ml-[0.22em]" >
126+ orm.farming-labs.dev
127+ </ InlineExternalLink >
128+ , < InlineExternalLink href = "https://www.blyp.dev" > blyp.dev</ InlineExternalLink > ,{ " " }
129+ < InlineExternalLink href = "https://navilo-docs.vercel.app/docs" >
130+ navilo-docs.vercel.app
131+ </ InlineExternalLink >
132+ ,{ " " }
133+ < InlineExternalLink href = "https://cligram.kumneger.dev/" >
134+ cligram.kumneger.dev
135+ </ InlineExternalLink >
136+ ,{ " " }
137+ < InlineExternalLink href = "https://sql-studio-docs.frectonz.et/docs" >
138+ sql-studio-docs.frectonz.et
139+ </ InlineExternalLink >
140+ ,{ " " }
141+ < InlineExternalLink href = "https://flutter-android-widgets-docs.vercel.app/docs" >
142+ flutter-android-widgets-docs.vercel.app
143+ </ InlineExternalLink >
144+ , and{ " " }
145+ < InlineExternalLink href = "https://docs.farming-labs.dev/docs" >
146+ docs.farming-labs.dev
147+ </ InlineExternalLink >
148+ </ > ,
103149 ] ,
104150 } ,
105151 {
0 commit comments