"use client"; import { observer } from "mobx-react-lite"; import Image from "next/image"; // ui import { useTheme } from "next-themes"; // components import { AuthRoot } from "@/components/accounts"; // images import PlaneBackgroundPatternDark from "public/auth/background-pattern-dark.svg"; import PlaneBackgroundPattern from "public/auth/background-pattern.svg"; import BluePlaneLogoWithoutText from "public/plane-logos/blue-without-text-new.png"; export const AuthView = observer(() => { // hooks const { resolvedTheme } = useTheme(); return (