GitHub
Docs
Installation (example)

Installation (example)

Install and configure Next.js.

Create project

Run the init command to create a new Next.js project or to setup an existing one:

npx libui-next init

Start coding

You can now start adding full stack components to your project!

npx libui-next add authjs

This will add all the configuration of Auth.js to your project.

import { SignUpForm } from '@/components/auth/sign-up-form'
 
export default function SignUp() {
  return (
    <div>
      <SignUpForm />
    </div>
  )
}