diff --git a/src/app/[locale]/changelog copy/changelog.module.css b/src/app/[locale]/changelog copy/changelog.module.css
deleted file mode 100644
index 273a4a34..00000000
--- a/src/app/[locale]/changelog copy/changelog.module.css
+++ /dev/null
@@ -1,4 +0,0 @@
-.test {
- @apply bg-red-500;
- @apply text-2xl;
-}
diff --git a/src/app/[locale]/changelog copy/page.jsx b/src/app/[locale]/changelog copy/page.jsx
deleted file mode 100644
index ad626beb..00000000
--- a/src/app/[locale]/changelog copy/page.jsx
+++ /dev/null
@@ -1,73 +0,0 @@
-'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'
-
-export default function changelogPage() {
- const testVar = process.env.NEXT_PUBLIC_TEST
-
- const handleUsers = async () => {
- const users = await get('/api/user/find-all')
- console.log(users)
- }
-
- const data = [
- {
- id: 1,
- author: 'SWYOO',
- contents: '버튼 정리(템플릿 적용)',
- date: '2024.07.16',
- },
- {
- id: 2,
- author: 'SWYOO',
- contents: 'README.md 파일 이미지 경로 수정',
- date: '2024.07.17',
- },
- {
- id: 3,
- author: 'SWYOO',
- contents: '',
- date: '',
- },
- ]
- return (
- <>
-
Sass 테스트입니다.
-