|
|
@@ -11,6 +11,7 @@ import { useRouter } from 'next/router';
|
|
|
import { useIsomorphicLayoutEffect } from 'usehooks-ts';
|
|
|
|
|
|
import { BasicLayout } from '~/components/Layout/BasicLayout';
|
|
|
+import { GroundGlassBar } from '~/components/Navbar/GroundGlassBar';
|
|
|
import type { CrowiRequest } from '~/interfaces/crowi-request';
|
|
|
import type { RendererConfig } from '~/interfaces/services/renderer';
|
|
|
import {
|
|
|
@@ -124,10 +125,15 @@ const MePage: NextPageWithLayout<Props> = (props: Props) => {
|
|
|
<title>{title}</title>
|
|
|
</Head>
|
|
|
<div className="dynamic-layout-root">
|
|
|
+ <GroundGlassBar className="sticky-top py-4"></GroundGlassBar>
|
|
|
+
|
|
|
<div className="main ps-sidebar">
|
|
|
<div className="container-lg wide-gutter-x-lg">
|
|
|
- <h1 className="title fs-3 mt-5">{ targetPage.title }</h1>
|
|
|
+
|
|
|
+ <h1 className="sticky-top py-2 fs-3">{ targetPage.title }</h1>
|
|
|
+
|
|
|
{targetPage.component}
|
|
|
+
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|