diff --git a/packages/next-safe-action/package.json b/packages/next-safe-action/package.json index ee97c2dd..b38ee50d 100644 --- a/packages/next-safe-action/package.json +++ b/packages/next-safe-action/package.json @@ -2,7 +2,7 @@ "name": "next-safe-action", "version": "0.0.0-development", "private": false, - "description": "Type safe and validated Server Actions in your Next.js (App Router) project.", + "description": "Type safe and validated Server Actions in your Next.js project.", "main": "./dist/index.mjs", "module": "./dist/index.mjs", "types": "./dist/index.d.mts", diff --git a/website/docs/getting-started.mdx b/website/docs/getting-started.mdx index 45126463..cb486391 100644 --- a/website/docs/getting-started.mdx +++ b/website/docs/getting-started.mdx @@ -16,7 +16,7 @@ import TabItem from '@theme/TabItem'; - A supported validation library: Zod, Valibot, Yup, TypeBox ::: -**next-safe-action** provides a typesafe Server Actions implementation for Next.js App Router. +**next-safe-action** provides a typesafe Server Actions implementation for Next.js App Router applications. ## Installation diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js index dd11c70d..abb2ea50 100644 --- a/website/docusaurus.config.js +++ b/website/docusaurus.config.js @@ -3,7 +3,7 @@ import { themes } from "prism-react-renderer"; /** @type {import('@docusaurus/types').Config} */ export default { title: "next-safe-action", - tagline: "Type safe Server Actions in your Next.js (App Router) project", + tagline: "Type safe Server Actions in your Next.js project", favicon: "img/favicon.ico", // Set the production url of your site here diff --git a/website/src/pages/index.tsx b/website/src/pages/index.tsx index b51292f9..8045c611 100644 --- a/website/src/pages/index.tsx +++ b/website/src/pages/index.tsx @@ -1,6 +1,5 @@ import useDocusaurusContext from "@docusaurus/useDocusaurusContext"; import Layout from "@theme/Layout"; -import React from "react"; import { Landing } from "../components/landing"; export default function Home(): JSX.Element { @@ -8,7 +7,7 @@ export default function Home(): JSX.Element { return ( + description="next-safe-action is a library for defining end-to-end typesafe and validated Server Actions in Next.js App Router projects."> );