From b54b6a5b574685bc0659e16f1e8b15c91e6b5591 Mon Sep 17 00:00:00 2001 From: yoosangwook Date: Tue, 6 Aug 2024 16:26:44 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=86=8C=EC=8A=A4=20=EC=BD=94=EB=93=9C?= =?UTF-8?q?=20=EC=A0=95=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 레이아웃 일관성 유지를 위한 마크업 수정 --- src/app/[locale]/changelog/page.jsx | 62 ++++++++++++++--------------- 1 file changed, 31 insertions(+), 31 deletions(-) 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 테스트입니다.

)