| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- import type { ReactNode } from 'react';
- import React from 'react';
- import { useAppTitle } from '~/stores/context';
- import GrowiLogo from '../Icons/GrowiLogo';
- import { RawLayout } from './RawLayout';
- import commonStyles from './NoLoginLayout.module.scss';
- type Props = {
- className?: string,
- children?: ReactNode,
- }
- export const NoLoginLayout = ({
- children, className,
- }: Props): JSX.Element => {
- const { data: appTitle } = useAppTitle();
- const classNames: string[] = [''];
- if (className != null) {
- classNames.push(className);
- }
- return (
- <RawLayout className={`nologin ${commonStyles.nologin} ${classNames}`}>
- <div className="d-flex align-items-center vh-100 mt-0 flex-row">
- <div className="main container-fluid">
- <div className="row">
- <div className="col-md-12 position-relative">
- <div className="nologin-header mx-auto rounded-4 rounded-bottom-0">
- <div className="d-flex justify-content-center align-items-center">
- <GrowiLogo />
- <h1 className="growi-logo-type text-white fs-3 my-3 ms-3">GROWI</h1>
- </div>
- {appTitle !== 'GROWI' ? (
- <h2 className="fs-4 text-center text-white">{ appTitle }</h2>
- ) : null}
- <div className="noLogin-form-errors px-3"></div>
- </div>
- {children}
- </div>
- </div>
- </div>
- </div>
- </RawLayout>
- );
- };
|