Skip to content

Commit

Permalink
doc: Update socials: bye X, RIP Twitter, hello Bluesky (#746)
Browse files Browse the repository at this point in the history
* doc: Update socials: bye X, RIP Twitter, hello Bluesky

* chore: Fix CI
  • Loading branch information
franky47 authored Nov 6, 2024
1 parent f4d47aa commit 72a5b2b
Show file tree
Hide file tree
Showing 7 changed files with 549 additions and 584 deletions.
1 change: 1 addition & 0 deletions packages/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"@faker-js/faker": "^9.0.3",
"@headlessui/react": "^2.1.9",
"@headlessui/tailwindcss": "^0.2.1",
"@icons-pack/react-simple-icons": "^10.1.0",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-select": "^2.1.2",
Expand Down
26 changes: 14 additions & 12 deletions packages/docs/src/app/(pages)/_landing/footer.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
/**
* v0 by Vercel.
* @see https://v0.dev/t/I8Btobzyd7p
*/
import { NuqsWordmark } from '@/src/components/logo'
import { GithubIcon, TwitterIcon, YoutubeIcon } from 'lucide-react'
import { SiBluesky, SiGithub, SiYoutube } from '@icons-pack/react-simple-icons'
import Link from 'next/link'

export default function Component() {
Expand Down Expand Up @@ -60,26 +56,32 @@ export default function Component() {
</div>
<div className="space-y-3">
<h3 className="text-xl font-semibold">Social</h3>
<ul className="space-y-2">
<ul className="space-y-1">
<li>
<Link
href="https://github.com/47ng/nuqs"
className="hover:underline"
className="inline-flex items-center gap-1 hover:underline"
>
<GithubIcon className="mr-2 inline-block h-5 w-5" /> GitHub
<SiGithub role="presentation" className="mr-2 size-5" />
<span>GitHub</span>
</Link>
</li>
<li>
<Link
href="https://www.youtube.com/@47ng-dev"
className="hover:underline"
className="inline-flex items-center gap-1 hover:underline"
>
<YoutubeIcon className="mr-2 inline-block h-5 w-5" /> YouTube
<SiYoutube role="presentation" className="mr-2 size-5" />
<span>YouTube</span>
</Link>
</li>
<li>
<Link href="https://x.com/nuqs47ng" className="hover:underline">
<TwitterIcon className="mr-2 inline-block h-5 w-5" /> Twitter
<Link
href="https://bsky.app/profile/nuqs.47ng.com"
className="inline-flex items-center gap-1 hover:underline"
>
<SiBluesky role="presentation" className="mr-2 size-5" />
<span>Bluesky</span>
</Link>
</li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion packages/e2e/react-router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"dev": "vite --port 4000",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "pnpm run --parallel --stream --filter e2e-react-router '/^test:/'",
"test": "pnpm run '/^test:/'",
"test:unit": "vitest",
"test:e2e": "echo 'todo: Implement e2e tests'"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/e2e/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"dev": "vite --port 4000",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "pnpm run --parallel --stream --filter e2e-react '/^test:/'",
"test": "pnpm run '/^test:/'",
"test:unit": "vitest",
"test:e2e": "echo 'todo: Implement e2e tests'"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/e2e/remix/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"dev": "remix vite:dev --port 4001",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "remix-serve ./build/server/index.js",
"test": "pnpm run --parallel --stream --filter e2e-remix '/^test:/'",
"test": "pnpm run '/^test:/'",
"test:e2e": "echo \"todo: Add e2e tests for Remix\"",
"test:types": "tsc"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/nuqs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
"prebuild": "rm -rf dist",
"build": "tsup",
"postbuild": "size-limit --json > size.json",
"test": "pnpm run --parallel --stream '/^test:/'",
"test": "pnpm run '/^test:/'",
"test:types": "tsd",
"test:unit": "vitest run",
"test:size": "size-limit",
Expand Down
Loading

0 comments on commit 72a5b2b

Please sign in to comment.