Skip to content

Commit 1456d50

Browse files
committed
doc: s/Next.js/React/g
1 parent 9d2a514 commit 1456d50

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

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

+4-5
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ export function FeaturesSection(props: React.ComponentProps<'section'>) {
4747
<Feature
4848
icon={<Shuffle size={32} />}
4949
title="Universal"
50-
description="Supports both the app router and pages router."
50+
description="Supports Next.js (app & pages routers), React SPA, Remix, React Router, and more."
51+
isNew
5152
/>
5253
<Feature
5354
icon={<BookCheck size={32} />}
@@ -87,13 +88,11 @@ export function FeaturesSection(props: React.ComponentProps<'section'>) {
8788
icon={<Server size={32} />}
8889
title="Server cache"
8990
description="Type-safe search params access in nested React Server Components. No prop drilling needed."
90-
isNew
9191
/>
9292
<Feature
9393
icon={<Hourglass size={32} />}
9494
title="Transition"
9595
description="Support for useTransition to get loading states on server updates."
96-
isNew
9796
/>
9897
<Feature
9998
icon={<Rainbow size={32} />}
@@ -113,11 +112,11 @@ export function FeaturesSection(props: React.ComponentProps<'section'>) {
113112
icon={<TestTube2 size={32} />}
114113
title={
115114
<span className="flex items-center">
116-
Tested
115+
Tested & testable
117116
<GitHubActionsStatus className="ml-4 inline-flex" />
118117
</span>
119118
}
120-
description="Tested against every Next.js release."
119+
description="Tested against every Next.js release. Use the provided test adapter to test your components in isolation."
121120
/>
122121
</section>
123122
)

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export function HeroSection() {
1515
<p className="my-8 text-center text-2xl md:text-4xl xl:text-left">
1616
Type-safe search params
1717
<br />
18-
state manager for Next.js
18+
state manager for React
1919
</p>
2020
<nav className="flex flex-wrap gap-4">
2121
<Link

packages/docs/src/app/(pages)/page.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const maxDuration = 60
1010

1111
export const metadata: Metadata = {
1212
title: {
13-
absolute: 'nuqs | Type-safe search params state management for Next.js'
13+
absolute: 'nuqs | Type-safe search params state management for React'
1414
},
1515
alternates: {
1616
canonical: 'https://nuqs.47ng.com'

packages/docs/src/app/layout.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export const metadata = {
2121
default: 'nuqs'
2222
},
2323
description:
24-
'Type-safe search params state management for Next.js. Like React.useState, but stored in the URL query string.',
24+
'Type-safe search params state management for React. Like useState, but stored in the URL query string.',
2525
authors: [
2626
{
2727
name: 'François Best',

0 commit comments

Comments
 (0)