Skip to content

Commit 69ac7d5

Browse files
committed
doc: Update socials: bye X, RIP Twitter, hello Bluesky
1 parent f4d47aa commit 69ac7d5

File tree

3 files changed

+545
-580
lines changed

3 files changed

+545
-580
lines changed

packages/docs/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
"@faker-js/faker": "^9.0.3",
2424
"@headlessui/react": "^2.1.9",
2525
"@headlessui/tailwindcss": "^0.2.1",
26+
"@icons-pack/react-simple-icons": "^10.1.0",
2627
"@radix-ui/react-checkbox": "^1.1.2",
2728
"@radix-ui/react-label": "^2.1.0",
2829
"@radix-ui/react-select": "^2.1.2",

packages/docs/src/app/(pages)/_landing/footer.tsx

+14-12
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
/**
2-
* v0 by Vercel.
3-
* @see https://v0.dev/t/I8Btobzyd7p
4-
*/
51
import { NuqsWordmark } from '@/src/components/logo'
6-
import { GithubIcon, TwitterIcon, YoutubeIcon } from 'lucide-react'
2+
import { SiBluesky, SiGithub, SiYoutube } from '@icons-pack/react-simple-icons'
73
import Link from 'next/link'
84

95
export default function Component() {
@@ -60,26 +56,32 @@ export default function Component() {
6056
</div>
6157
<div className="space-y-3">
6258
<h3 className="text-xl font-semibold">Social</h3>
63-
<ul className="space-y-2">
59+
<ul className="space-y-1">
6460
<li>
6561
<Link
6662
href="https://github.com/47ng/nuqs"
67-
className="hover:underline"
63+
className="inline-flex items-center gap-1 hover:underline"
6864
>
69-
<GithubIcon className="mr-2 inline-block h-5 w-5" /> GitHub
65+
<SiGithub role="presentation" className="mr-2 size-5" />
66+
<span>GitHub</span>
7067
</Link>
7168
</li>
7269
<li>
7370
<Link
7471
href="https://www.youtube.com/@47ng-dev"
75-
className="hover:underline"
72+
className="inline-flex items-center gap-1 hover:underline"
7673
>
77-
<YoutubeIcon className="mr-2 inline-block h-5 w-5" /> YouTube
74+
<SiYoutube role="presentation" className="mr-2 size-5" />
75+
<span>YouTube</span>
7876
</Link>
7977
</li>
8078
<li>
81-
<Link href="https://x.com/nuqs47ng" className="hover:underline">
82-
<TwitterIcon className="mr-2 inline-block h-5 w-5" /> Twitter
79+
<Link
80+
href="https://bsky.app/profile/nuqs.47ng.com"
81+
className="inline-flex items-center gap-1 hover:underline"
82+
>
83+
<SiBluesky role="presentation" className="mr-2 size-5" />
84+
<span>Bluesky</span>
8385
</Link>
8486
</li>
8587
</ul>

0 commit comments

Comments
 (0)