mirror of
https://github.com/Sevichecc/m-oauth.git
synced 2025-04-30 06:59:29 +08:00
15 lines
365 B
TypeScript
15 lines
365 B
TypeScript
import ClientOnly from "@/components/ClientOnly";
|
|
import FormContainer from "@/components/FormContainer";
|
|
import Brand from "@/components/Brand";
|
|
export default function Home() {
|
|
return (
|
|
<main>
|
|
<div className="flex flex-col gap-4">
|
|
<Brand/>
|
|
<ClientOnly>
|
|
<FormContainer />
|
|
</ClientOnly>
|
|
</div>
|
|
</main>
|
|
);
|
|
}
|