diff --git a/src/app/[locale]/changelog/page.jsx b/src/app/[locale]/changelog/page.jsx index ad626beb..85ca6310 100644 --- a/src/app/[locale]/changelog/page.jsx +++ b/src/app/[locale]/changelog/page.jsx @@ -1,7 +1,6 @@ 'use client' import { Button, Table, TableBody, TableCell, TableColumn, TableHeader, TableRow } from '@nextui-org/react' -import Hero from '@/components/Hero' import QSelect from '@/components/ui/QSelect' import styles from './changelog.module.css' import { get } from '@/lib/Axios' @@ -36,37 +35,38 @@ export default function changelogPage() { ] return ( <> - -
이 영역은 테스트입니다.
-
- - - DATE - NAME - CONTENTS - - - {data.map((item) => ( - - {item.date} - {item.author} - {item.contents} - - ))} - -
-
-
- -
-
{testVar}
-
-
- +
+
이 영역은 테스트입니다.
+
+ + + DATE + NAME + CONTENTS + + + {data.map((item) => ( + + {item.date} + {item.author} + {item.contents} + + ))} + +
+
+
+ +
+
{testVar}
+
+
+ +
+
+
+

Sass 테스트입니다.

-
-
-

Sass 테스트입니다.

)