import React, { ReactNode } from 'react'; import Head from 'next/head'; import { useGrowiTheme } from '~/stores/context'; import { useNextThemes } from '~/stores/use-next-themes'; import GrowiLogo from '../Icons/GrowiLogo'; import { RawLayout } from './RawLayout'; import loginStyles from './Login.module.scss'; import commonStyles from './NoLoginLayout.module.scss'; type Props = { title: string, className?: string, children?: ReactNode, } export const NoLoginLayout = ({ children, title, className, }: Props): JSX.Element => { const classNames: string[] = ['wrapper']; if (className != null) { classNames.push(className); } return (

GROWI

{children}
); };