aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/pages/about/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'FrontEnd/src/pages/about/index.tsx')
-rw-r--r--FrontEnd/src/pages/about/index.tsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/FrontEnd/src/pages/about/index.tsx b/FrontEnd/src/pages/about/index.tsx
index afd4de34..acec1735 100644
--- a/FrontEnd/src/pages/about/index.tsx
+++ b/FrontEnd/src/pages/about/index.tsx
@@ -1,6 +1,7 @@
import "./index.css";
import { useC } from "@/common";
+import Page from "@/views/common/Page";
interface Credit {
name: string;
@@ -52,7 +53,7 @@ export default function AboutPage() {
const c = useC();
return (
- <div className="about-page">
+ <Page className="about-page">
<h2>{c("about.credits.title")}</h2>
<p>{c("about.credits.content")}</p>
<h3>{c("about.credits.frontend")}</h3>
@@ -81,6 +82,6 @@ export default function AboutPage() {
})}
<li>...</li>
</ul>
- </div>
+ </Page>
);
}