|
@@ -1,8 +1,11 @@
|
|
|
-import React, { ReactNode } from 'react';
|
|
|
|
|
|
|
+import type { ReactNode } from 'react';
|
|
|
|
|
+import React from 'react';
|
|
|
|
|
|
|
|
import dynamic from 'next/dynamic';
|
|
import dynamic from 'next/dynamic';
|
|
|
|
|
+import Link from 'next/link';
|
|
|
|
|
|
|
|
import { AdminNavigation } from '../Admin/Common/AdminNavigation';
|
|
import { AdminNavigation } from '../Admin/Common/AdminNavigation';
|
|
|
|
|
+import GrowiLogo from '../Icons/GrowiLogo';
|
|
|
|
|
|
|
|
import { RawLayout } from './RawLayout';
|
|
import { RawLayout } from './RawLayout';
|
|
|
|
|
|
|
@@ -29,7 +32,20 @@ const AdminLayout = ({
|
|
|
<div className={`admin-page ${styles['admin-page']}`}>
|
|
<div className={`admin-page ${styles['admin-page']}`}>
|
|
|
|
|
|
|
|
<header className="py-0 container-fluid">
|
|
<header className="py-0 container-fluid">
|
|
|
- <h1 className="p-3 fs-2">{componentTitle}</h1>
|
|
|
|
|
|
|
+ {/* <div className="p-3 fs-2 d-flex align-items-center">
|
|
|
|
|
+ <Link href="/" className="grw-logo d-block me-2">
|
|
|
|
|
+ <GrowiLogo />
|
|
|
|
|
+ </Link>
|
|
|
|
|
+ <h1 className="fs-2">
|
|
|
|
|
+ {componentTitle}
|
|
|
|
|
+ </h1>
|
|
|
|
|
+ </div> */}
|
|
|
|
|
+ <h1 className="p-3 fs-2 d-flex align-items-center">
|
|
|
|
|
+ <Link href="/" className="grw-logo d-block mb-1 me-2">
|
|
|
|
|
+ <GrowiLogo />
|
|
|
|
|
+ </Link>
|
|
|
|
|
+ {componentTitle}
|
|
|
|
|
+ </h1>
|
|
|
</header>
|
|
</header>
|
|
|
<div id="main" className="main">
|
|
<div id="main" className="main">
|
|
|
<div className="container-fluid">
|
|
<div className="container-fluid">
|