Skip to content

Commit

Permalink
doc: s/Next.js/React/g
Browse files Browse the repository at this point in the history
  • Loading branch information
franky47 committed Oct 22, 2024
1 parent 9d2a514 commit 1456d50
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
9 changes: 4 additions & 5 deletions packages/docs/src/app/(pages)/_landing/features.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ export function FeaturesSection(props: React.ComponentProps<'section'>) {
<Feature
icon={<Shuffle size={32} />}
title="Universal"
description="Supports both the app router and pages router."
description="Supports Next.js (app & pages routers), React SPA, Remix, React Router, and more."
isNew
/>
<Feature
icon={<BookCheck size={32} />}
Expand Down Expand Up @@ -87,13 +88,11 @@ export function FeaturesSection(props: React.ComponentProps<'section'>) {
icon={<Server size={32} />}
title="Server cache"
description="Type-safe search params access in nested React Server Components. No prop drilling needed."
isNew
/>
<Feature
icon={<Hourglass size={32} />}
title="Transition"
description="Support for useTransition to get loading states on server updates."
isNew
/>
<Feature
icon={<Rainbow size={32} />}
Expand All @@ -113,11 +112,11 @@ export function FeaturesSection(props: React.ComponentProps<'section'>) {
icon={<TestTube2 size={32} />}
title={
<span className="flex items-center">
Tested
Tested & testable
<GitHubActionsStatus className="ml-4 inline-flex" />
</span>
}
description="Tested against every Next.js release."
description="Tested against every Next.js release. Use the provided test adapter to test your components in isolation."
/>
</section>
)
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/src/app/(pages)/_landing/hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function HeroSection() {
<p className="my-8 text-center text-2xl md:text-4xl xl:text-left">
Type-safe search params
<br />
state manager for Next.js
state manager for React
</p>
<nav className="flex flex-wrap gap-4">
<Link
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/src/app/(pages)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const maxDuration = 60

export const metadata: Metadata = {
title: {
absolute: 'nuqs | Type-safe search params state management for Next.js'
absolute: 'nuqs | Type-safe search params state management for React'
},
alternates: {
canonical: 'https://nuqs.47ng.com'
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const metadata = {
default: 'nuqs'
},
description:
'Type-safe search params state management for Next.js. Like React.useState, but stored in the URL query string.',
'Type-safe search params state management for React. Like useState, but stored in the URL query string.',
authors: [
{
name: 'François Best',
Expand Down

0 comments on commit 1456d50

Please sign in to comment.