-
Notifications
You must be signed in to change notification settings - Fork 5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
61 changed files
with
1,605 additions
and
774 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import { GalleryVerticalEnd } from "lucide-react" | ||
|
||
import { LoginForm } from "@/registry/default/block/login-02/components/login-form" | ||
|
||
export const description = "A two column login page with a cover image." | ||
|
||
export const iframeHeight = "870px" | ||
|
||
export default function LoginPage() { | ||
return ( | ||
<div className="grid min-h-svh lg:grid-cols-2"> | ||
<div className="flex flex-col gap-4 p-6 md:p-10"> | ||
<div className="flex justify-center gap-2 md:justify-start"> | ||
<a href="#" className="flex items-center gap-2 font-medium"> | ||
<div className="flex h-6 w-6 items-center justify-center rounded-md bg-primary text-primary-foreground"> | ||
<GalleryVerticalEnd className="size-4" /> | ||
</div> | ||
Acme Inc. | ||
</a> | ||
</div> | ||
<div className="flex flex-1 items-center justify-center"> | ||
<div className="w-full max-w-xs"> | ||
<LoginForm /> | ||
</div> | ||
</div> | ||
</div> | ||
<div className="relative hidden bg-muted lg:block"> | ||
<img | ||
src="/placeholder.svg" | ||
alt="Image" | ||
className="absolute inset-0 h-full w-full object-cover dark:brightness-[0.2] dark:grayscale" | ||
/> | ||
</div> | ||
</div> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import { GalleryVerticalEnd } from "lucide-react" | ||
|
||
import { LoginForm } from "@/registry/default/block/login-03/components/login-form" | ||
|
||
export const description = "A login page with a muted background color." | ||
|
||
export const iframeHeight = "870px" | ||
|
||
export default function LoginPage() { | ||
return ( | ||
<div className="flex min-h-svh flex-col items-center justify-center gap-6 bg-muted p-6 md:p-10"> | ||
<div className="flex w-full max-w-sm flex-col gap-6"> | ||
<a href="#" className="flex items-center gap-2 self-center font-medium"> | ||
<div className="flex h-6 w-6 items-center justify-center rounded-md bg-primary text-primary-foreground"> | ||
<GalleryVerticalEnd className="size-4" /> | ||
</div> | ||
Acme Inc. | ||
</a> | ||
<LoginForm /> | ||
</div> | ||
</div> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { LoginForm } from "@/registry/default/block/login-04/components/login-form" | ||
|
||
export const description = "A login page with form and image." | ||
|
||
export const iframeHeight = "870px" | ||
|
||
export default function LoginPage() { | ||
return ( | ||
<div className="flex min-h-svh flex-col items-center justify-center bg-muted p-6 md:p-10"> | ||
<div className="w-full max-w-sm md:max-w-3xl"> | ||
<LoginForm /> | ||
</div> | ||
</div> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { LoginForm } from "@/registry/default/block/login-05/components/login-form" | ||
|
||
export const description = "A simple email-only login page." | ||
|
||
export const iframeHeight = "870px" | ||
|
||
export default function LoginPage() { | ||
return ( | ||
<div className="flex min-h-svh flex-col items-center justify-center gap-6 bg-background p-6 md:p-10"> | ||
<div className="w-full max-w-sm"> | ||
<LoginForm /> | ||
</div> | ||
</div> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import { GalleryVerticalEnd } from "lucide-react" | ||
|
||
import { LoginForm } from "@/registry/new-york/block/login-02/components/login-form" | ||
|
||
export const description = "A two column login page with a cover image." | ||
|
||
export const iframeHeight = "870px" | ||
|
||
export default function LoginPage() { | ||
return ( | ||
<div className="grid min-h-svh lg:grid-cols-2"> | ||
<div className="flex flex-col gap-4 p-6 md:p-10"> | ||
<div className="flex justify-center gap-2 md:justify-start"> | ||
<a href="#" className="flex items-center gap-2 font-medium"> | ||
<div className="flex h-6 w-6 items-center justify-center rounded-md bg-primary text-primary-foreground"> | ||
<GalleryVerticalEnd className="size-4" /> | ||
</div> | ||
Acme Inc. | ||
</a> | ||
</div> | ||
<div className="flex flex-1 items-center justify-center"> | ||
<div className="w-full max-w-xs"> | ||
<LoginForm /> | ||
</div> | ||
</div> | ||
</div> | ||
<div className="relative hidden bg-muted lg:block"> | ||
<img | ||
src="/placeholder.svg" | ||
alt="Image" | ||
className="absolute inset-0 h-full w-full object-cover dark:brightness-[0.2] dark:grayscale" | ||
/> | ||
</div> | ||
</div> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import { GalleryVerticalEnd } from "lucide-react" | ||
|
||
import { LoginForm } from "@/registry/new-york/block/login-03/components/login-form" | ||
|
||
export const description = "A login page with a muted background color." | ||
|
||
export const iframeHeight = "870px" | ||
|
||
export default function LoginPage() { | ||
return ( | ||
<div className="flex min-h-svh flex-col items-center justify-center gap-6 bg-muted p-6 md:p-10"> | ||
<div className="flex w-full max-w-sm flex-col gap-6"> | ||
<a href="#" className="flex items-center gap-2 self-center font-medium"> | ||
<div className="flex h-6 w-6 items-center justify-center rounded-md bg-primary text-primary-foreground"> | ||
<GalleryVerticalEnd className="size-4" /> | ||
</div> | ||
Acme Inc. | ||
</a> | ||
<LoginForm /> | ||
</div> | ||
</div> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { LoginForm } from "@/registry/new-york/block/login-04/components/login-form" | ||
|
||
export const description = "A login page with form and image." | ||
|
||
export const iframeHeight = "870px" | ||
|
||
export default function LoginPage() { | ||
return ( | ||
<div className="flex min-h-svh flex-col items-center justify-center bg-muted p-6 md:p-10"> | ||
<div className="w-full max-w-sm md:max-w-3xl"> | ||
<LoginForm /> | ||
</div> | ||
</div> | ||
) | ||
} |
Oops, something went wrong.