Skip to content

Commit

Permalink
docs: update library description
Browse files Browse the repository at this point in the history
  • Loading branch information
TheEdoRan committed Sep 2, 2024
1 parent 12b021b commit 8e654bc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/next-safe-action/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion website/docs/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions website/src/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
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 {
const { siteConfig } = useDocusaurusContext();
return (
<Layout
title={siteConfig.tagline}
description="next-safe-action is a library for defining end-to-end typesafe and validated Server Actions in Next.js (App Router) projects.">
description="next-safe-action is a library for defining end-to-end typesafe and validated Server Actions in Next.js App Router projects.">
<Landing />
</Layout>
);
Expand Down

0 comments on commit 8e654bc

Please sign in to comment.