Wandry UI Component

PreviousNext

A component for Wandry UI

Docs
wandry-uiblock

Preview

Loading preview…
registry/wandry-ui/blocks/login-02/page.tsx
"use client";
import * as React from "react";
import { LoginForm } from "./components/login-form";

const Page = () => {
  return (
    <div className="bg-muted flex min-h-svh w-full items-center justify-center p-6 md:p-10">
      <div className="w-full max-w-sm">
        <LoginForm />
      </div>
    </div>
  );
};

export default Page;

Installation

npx shadcn@latest add @wandry-ui/login-02

Usage

import { Login02 } from "@/components/login-02"
<Login02 />