@@ -279,7 +279,11 @@ export function CodePage({ allTags, data }: CodePageProps) {
279279 />
280280 </ NextHead >
281281 < div className = "container py-8 md:pt-16" >
282- < h1 className = "typography-h1" > Code Using GraphQL</ h1 >
282+ < h1 className = "typography-h1 text-center" > Tools and Libraries</ h1 >
283+ < p className = "typography-body-sm mt-8 text-center" >
284+ Explore tools and libraries for working with GraphQL across various
285+ languages and platforms.
286+ </ p >
283287 < div className = "typography-h3 my-10 flex max-w-[700px] items-center border-b border-current pb-2.5" >
284288 < div
285289 className = { clsx (
@@ -303,7 +307,7 @@ export function CodePage({ allTags, data }: CodePageProps) {
303307 />
304308 < MagnifyingGlassIcon className = "shrink-0" />
305309 </ div >
306- < div className = "mt-8 md:grid md:grid-cols-[minmax(240px,300px)_1fr] md:gap-8 xl:grid-cols-[minmax(260px,320px)_1fr] " >
310+ < div className = "mt-8 md:grid md:grid-cols-[minmax(240px,300px)_1fr] md:gap-8" >
307311 < CheckboxTree
308312 items = { filterTreeItems }
309313 selectedValues = { selectedTags }
@@ -315,9 +319,9 @@ export function CodePage({ allTags, data }: CodePageProps) {
315319 < RadioGroup
316320 value = { sort }
317321 onValueChange = { setSort }
318- className = "flex flex-wrap gap-2 md:flex-nowrap"
322+ className = "typography-menu flex flex-wrap gap-2 text-sm md:flex-nowrap"
319323 >
320- < div className = "mr-4" > Sort by:</ div >
324+ < div > Sort by:</ div >
321325 < div className = "flex items-center" >
322326 < RadioGroupItem value = "popularity" id = "r1" />
323327 < label htmlFor = "r1" className = "cursor-pointer pl-2" >
@@ -333,7 +337,7 @@ export function CodePage({ allTags, data }: CodePageProps) {
333337 </ RadioGroup >
334338
335339 { /* todo: add md:*:h-full when the readme opens in a modal */ }
336- < div className = "mt-6 grid gap-2 py-8 md:grid-cols-2 md:gap-4" >
340+ < div className = "grid gap-2 py-8 md:grid-cols-2 md:gap-4" >
337341 { ( sort === "alphabetical"
338342 ? [ ...newData ] . sort ( ( a , b ) =>
339343 a . frontMatter . name . localeCompare ( b . frontMatter . name ) ,
0 commit comments