Skip to content

Commit 72a5b2b

Browse files
authored
doc: Update socials: bye X, RIP Twitter, hello Bluesky (#746)
* doc: Update socials: bye X, RIP Twitter, hello Bluesky * chore: Fix CI
1 parent f4d47aa commit 72a5b2b

File tree

7 files changed

+549
-584
lines changed

7 files changed

+549
-584
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>

packages/e2e/react-router/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"dev": "vite --port 4000",
88
"build": "tsc -b && vite build",
99
"preview": "vite preview",
10-
"test": "pnpm run --parallel --stream --filter e2e-react-router '/^test:/'",
10+
"test": "pnpm run '/^test:/'",
1111
"test:unit": "vitest",
1212
"test:e2e": "echo 'todo: Implement e2e tests'"
1313
},

packages/e2e/react/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"dev": "vite --port 4000",
88
"build": "tsc -b && vite build",
99
"preview": "vite preview",
10-
"test": "pnpm run --parallel --stream --filter e2e-react '/^test:/'",
10+
"test": "pnpm run '/^test:/'",
1111
"test:unit": "vitest",
1212
"test:e2e": "echo 'todo: Implement e2e tests'"
1313
},

packages/e2e/remix/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"dev": "remix vite:dev --port 4001",
99
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
1010
"start": "remix-serve ./build/server/index.js",
11-
"test": "pnpm run --parallel --stream --filter e2e-remix '/^test:/'",
11+
"test": "pnpm run '/^test:/'",
1212
"test:e2e": "echo \"todo: Add e2e tests for Remix\"",
1313
"test:types": "tsc"
1414
},

packages/nuqs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
"prebuild": "rm -rf dist",
105105
"build": "tsup",
106106
"postbuild": "size-limit --json > size.json",
107-
"test": "pnpm run --parallel --stream '/^test:/'",
107+
"test": "pnpm run '/^test:/'",
108108
"test:types": "tsd",
109109
"test:unit": "vitest run",
110110
"test:size": "size-limit",

0 commit comments

Comments
 (0)