| @@ -2,7 +2,7 @@ import { useEffect, useRef, useState } from 'react' | |||||
| import { Helmet } from 'react-helmet-async' | import { Helmet } from 'react-helmet-async' | ||||
| import TagLink from '@/components/TagLink' | import TagLink from '@/components/TagLink' | ||||
| import SectionTitle from '@/components/common/SectionTitle' | |||||
| import PageTitle from '@/components/common/PageTitle' | |||||
| import TextArea from '@/components/common/TextArea' | import TextArea from '@/components/common/TextArea' | ||||
| import MainArea from '@/components/layout/MainArea' | import MainArea from '@/components/layout/MainArea' | ||||
| import { toast } from '@/components/ui/use-toast' | import { toast } from '@/components/ui/use-toast' | ||||
| @@ -92,7 +92,7 @@ export default ({ user }: Props) => { | |||||
| </Helmet> | </Helmet> | ||||
| <div className="max-w-xl"> | <div className="max-w-xl"> | ||||
| <SectionTitle>ニコニコ連携</SectionTitle> | |||||
| <PageTitle>ニコニコ連携</PageTitle> | |||||
| </div> | </div> | ||||
| <div className="mt-4"> | <div className="mt-4"> | ||||
| @@ -3,6 +3,7 @@ import { Helmet } from 'react-helmet-async' | |||||
| import { useLocation } from 'react-router-dom' | import { useLocation } from 'react-router-dom' | ||||
| import PrefetchLink from '@/components/PrefetchLink' | import PrefetchLink from '@/components/PrefetchLink' | ||||
| import PageTitle from '@/components/common/PageTitle' | |||||
| import MainArea from '@/components/layout/MainArea' | import MainArea from '@/components/layout/MainArea' | ||||
| import { SITE_TITLE } from '@/config' | import { SITE_TITLE } from '@/config' | ||||
| import { apiGet } from '@/lib/api' | import { apiGet } from '@/lib/api' | ||||
| @@ -28,6 +29,9 @@ export default () => { | |||||
| <Helmet> | <Helmet> | ||||
| <title>{`Wiki 変更履歴 | ${ SITE_TITLE }`}</title> | <title>{`Wiki 変更履歴 | ${ SITE_TITLE }`}</title> | ||||
| </Helmet> | </Helmet> | ||||
| <PageTitle>Wiki 履歴</PageTitle> | |||||
| <table className="table-auto w-full border-collapse"> | <table className="table-auto w-full border-collapse"> | ||||
| <thead className="border-b-2 border-black dark:border-white"> | <thead className="border-b-2 border-black dark:border-white"> | ||||
| <tr> | <tr> | ||||
| @@ -2,7 +2,7 @@ import { useEffect, useState } from 'react' | |||||
| import { Helmet } from 'react-helmet-async' | import { Helmet } from 'react-helmet-async' | ||||
| import PrefetchLink from '@/components/PrefetchLink' | import PrefetchLink from '@/components/PrefetchLink' | ||||
| import SectionTitle from '@/components/common/SectionTitle' | |||||
| import PageTitle from '@/components/common/PageTitle' | |||||
| import MainArea from '@/components/layout/MainArea' | import MainArea from '@/components/layout/MainArea' | ||||
| import { SITE_TITLE } from '@/config' | import { SITE_TITLE } from '@/config' | ||||
| import { apiGet } from '@/lib/api' | import { apiGet } from '@/lib/api' | ||||
| @@ -37,7 +37,7 @@ export default () => { | |||||
| </Helmet> | </Helmet> | ||||
| <div className="max-w-xl"> | <div className="max-w-xl"> | ||||
| <SectionTitle>Wiki</SectionTitle> | |||||
| <PageTitle>Wiki</PageTitle> | |||||
| <form onSubmit={handleSearch} className="space-y-2"> | <form onSubmit={handleSearch} className="space-y-2"> | ||||
| {/* タイトル */} | {/* タイトル */} | ||||
| <div> | <div> | ||||