mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-09 20:27:44 +00:00
28 lines
631 B
TypeScript
28 lines
631 B
TypeScript
"use client";
|
|
|
|
import SignIn from "@/components/sign-in";
|
|
import { SignUp } from "@/components/sign-up";
|
|
import { Tabs } from "@/components/ui/tabs2";
|
|
|
|
export default function Page() {
|
|
return (
|
|
<div className="w-full">
|
|
|
|
<div className="flex items-center flex-col justify-center w-full py-10">
|
|
|
|
<div className="w-[400px]">
|
|
<Tabs tabs={[{
|
|
title: "Sign In",
|
|
value: "sign-in",
|
|
content: <SignIn />,
|
|
}, {
|
|
title: "Sign Up",
|
|
value: "sign-up",
|
|
content: <SignUp />,
|
|
}]} />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|