Skip to content

Commit

Permalink
fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
WesternConcrete committed May 20, 2024
1 parent dfe05f3 commit 7fc0115
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
11 changes: 7 additions & 4 deletions examples/showcase/app/_components/top-nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,13 @@ export default function TopNav({
return (
<div className="fixed w-screen h-fit top-0 bg-background/80 backdrop-blur z-20 overscroll-none">
<div className="border-b border-muted flex flex-row gap-10 items-center w-full px-10 max-w-screen py-4 sm:justify-start justify-between">
<h3 className="whitespace-nowrap font-bold flex gap-3 items-center">
<Network className="size-5" />
Zod Server Actions
</h3>
<Link passHref href="/introduction">
<h3 className="whitespace-nowrap font-bold flex gap-3 items-center">
<Network className="size-5" />
ZSA
</h3>
</Link>

<div className="flex-1 flex-row gap-8 items-center px-4 text-sm font-medium hidden sm:flex">
<Link
href="/introduction"
Expand Down
2 changes: 1 addition & 1 deletion examples/showcase/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import "./globals.css"
const inter = Inter({ subsets: ["latin"] })

export const metadata: Metadata = {
title: "Zod Server Actions",
title: "ZSA",
description: "Build scalable, lightweight server actions.",
}

Expand Down
6 changes: 3 additions & 3 deletions examples/showcase/content/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ groupOrder: 0

#### Welcome to `zsa`! 👋

# Zod Server Actions
# ZSA

`zsa` is the best library for building typesafe server actions in NextJS. Built for a simple, scalable developer experience, some majors features include...
`zsa` is the best library for building typesafe server actions in NextJS. Built for a simple, scalable developer experience. Some majors features include...

- Validated inputs/outputs
- Validated inputs/outputs with zod (hence the name *Zod Server Actions*)
- Procedures (aka middleware) that pass context to your server actions
- [React Query](https://tanstack.com/query/latest/docs/framework/react/overview) integration for querying server actions in client components

Expand Down

0 comments on commit 7fc0115

Please sign in to comment.