fix: 소스 코드 정리

레이아웃 일관성 유지를 위한 마크업 수정
This commit is contained in:
yoosangwook 2024-08-06 16:26:44 +09:00
parent bdeb09cb9b
commit b54b6a5b57

View File

@ -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,7 +35,7 @@ export default function changelogPage() {
]
return (
<>
<Hero title="Change log" />
<div className="container mx-auto p-4 m-4 border">
<div className={styles.test}> 영역은 테스트입니다.</div>
<div>
<Table isStriped>
@ -68,6 +67,7 @@ export default function changelogPage() {
<div className="test">
<p className="text-white">Sass 테스트입니다.</p>
</div>
</div>
</>
)
}