diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index c7b94b080..93d4b61f9 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -72,7 +72,7 @@ export function Navbar({ children }: { children: React.ReactNode }) {
Log In
@@ -112,36 +112,41 @@ export function Navbar({ children }: { children: React.ReactNode }) { ) + const socialLinksData = [ + { + href: 'https://x.com/tan_stack', + label: 'Follow TanStack on X.com', + icon: , + }, + { + href: 'https://bsky.app/profile/tanstack.com', + label: 'Follow TanStack on Bluesky', + icon: , + }, + { + href: 'https://instagram.com/tan_stack', + label: 'Follow TanStack on Instagram', + icon: , + }, + { + href: 'https://tlinz.com/discord', + label: 'Join TanStack Discord', + icon: , + }, + ] + const socialLinks = (
- - - - - - - - - - - - + {socialLinksData.map((link, index) => ( + + {link.icon} + + ))}
) diff --git a/src/components/ThemeToggle.tsx b/src/components/ThemeToggle.tsx index 2b93087b5..bee92928c 100644 --- a/src/components/ThemeToggle.tsx +++ b/src/components/ThemeToggle.tsx @@ -18,7 +18,7 @@ export function ThemeToggle() { onClick={handleToggleMode} className={`bg-gray-500/10 dark:bg-gray-500/30 rounded-lg flex items-center justify-between hover:bg-gray-500/20 dark:hover:bg-gray-500/40 - cursor-pointer transition-all text-xs font-black`} + cursor-pointer transition-all duration-300 ease-in-out text-xs font-black`} >