Skip to content

Commit 2759488

Browse files
Merge branch 'main' into tabs-code-styling
2 parents f5ef3a2 + d38d790 commit 2759488

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/components/Navbar.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -272,11 +272,11 @@ export function Navbar({ children }: { children: React.ReactNode }) {
272272
)}
273273
ref={containerRef}
274274
>
275-
<div className="flex items-center gap-4">
275+
<div className="flex items-center">
276276
<div className="flex items-center gap-2 font-black text-xl uppercase">
277277
<React.Suspense fallback={<LogoSection />}>
278278
<LazyBrandContextMenu
279-
className={twMerge(`flex items-center gap-1.5 group`)}
279+
className={twMerge(`flex items-center group`)}
280280
>
281281
<LogoSection />
282282
</LazyBrandContextMenu>
@@ -308,7 +308,7 @@ export function Navbar({ children }: { children: React.ReactNode }) {
308308
},
309309
})
310310

311-
const linkClasses = `flex items-center justify-between gap-2 group px-2 py-1 rounded-lg hover:bg-gray-500/10 font-black`
311+
const linkClasses = `flex items-center justify-between gap-2 group px-2 py-1 rounded-lg hover:bg-gray-500/10 font-bold`
312312

313313
const items = (
314314
<div className="md:flex gap-2 [&>*]:flex-1 lg:block">
@@ -346,7 +346,7 @@ export function Navbar({ children }: { children: React.ReactNode }) {
346346
<a href={library.to} className={linkClasses}>
347347
<span
348348
className={twMerge(
349-
'w-3 h-3 rounded-sm border border-black/20 dark:border-white/20',
349+
'w-3 h-3 rounded-sm border border-white/50',
350350
library.bgStyle,
351351
)}
352352
/>
@@ -365,7 +365,7 @@ export function Navbar({ children }: { children: React.ReactNode }) {
365365
>
366366
<span
367367
className={twMerge(
368-
'w-3 h-3 rounded-sm border border-black/20 dark:border-white/20',
368+
'w-3 h-3 rounded-sm',
369369
library.bgStyle,
370370
)}
371371
/>

src/libraries/libraries.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ export const pacer: LibrarySlim = {
245245
'Framework agnostic debouncing, throttling, rate limiting, queuing, and batching utilities',
246246
description:
247247
"Optimize your application's performance with TanStack Pacer's core primitives: Debouncing, Throttling, Rate Limiting, Queuing, and Batching.",
248-
bgStyle: 'bg-lime-700',
248+
bgStyle: 'bg-lime-600',
249249
borderStyle: 'border-lime-700/50',
250250
textStyle: 'text-lime-500',
251251
textColor: 'text-lime-700',
@@ -272,7 +272,7 @@ export const db: LibrarySlim = {
272272
description:
273273
'TanStack DB gives you a reactive, client-first store for your API data with collections, live queries and optimistic mutations that keep your UI reactive, consistent and blazing fast 🔥',
274274
badge: 'beta',
275-
bgStyle: 'bg-orange-700',
275+
bgStyle: 'bg-orange-500',
276276
borderStyle: 'border-orange-700/50',
277277
textStyle: 'text-orange-500',
278278
textColor: 'text-orange-700',
@@ -299,7 +299,7 @@ export const ai: LibrarySlim = {
299299
description:
300300
'A powerful, open-source AI SDK with a unified interface across multiple providers. No vendor lock-in, no proprietary formats, just clean TypeScript and honest open source.',
301301
badge: 'alpha',
302-
bgStyle: 'bg-pink-700',
302+
bgStyle: 'bg-pink-500',
303303
borderStyle: 'border-pink-700/50',
304304
textStyle: 'text-pink-500',
305305
textColor: 'text-pink-700',

0 commit comments

Comments
 (0)