import { Box, Center, Flex, Image, Text } from "@chakra-ui/react"; import React from "react"; import { LOGO_URL } from "../constants"; export function AuthLayout({ children }: { children: React.ReactNode }) { return (
Authorizer
{children}
); }