diff --git a/app/page.tsx b/app/page.tsx
index bae0743..e47c513 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -1,113 +1,3 @@
-import Image from 'next/image';
-
export default function Home() {
- return (
-
-
-
- Get started by editing
- app/page.tsx
-
-
-
-
-
-
-
-
-
-
- );
+ return <>>;
}
diff --git a/app/style.css b/app/style.css
deleted file mode 100644
index 8450afc..0000000
--- a/app/style.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/* style.css */
-@font-face {
- font-family: 'primaryFont';
- src: url('../font.ttf') format('truetype'); /* Update the path as per your directory structure */
- font-weight: normal;
- font-style: normal;
-}
diff --git a/hooks/.gitkeep b/hooks/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/pages/api/image/post.ts b/pages/api/image/post.ts
index 113e9d6..eb4d27f 100644
--- a/pages/api/image/post.ts
+++ b/pages/api/image/post.ts
@@ -39,7 +39,7 @@ const handler = async (req: NextApiRequest, res: NextApiResponse) => {
return res.status(200).json({ data: userForm });
} catch (error) {
- console.error(error);
+ throw new Error();
return res.status(500).json({ message: '서버 에러' });
}
};