diff --git a/components/DeveloperLayout.tsx b/components/DeveloperLayout.tsx
index fd0f9a2..9312fa4 100644
--- a/components/DeveloperLayout.tsx
+++ b/components/DeveloperLayout.tsx
@@ -1,3 +1,4 @@
+/* eslint-disable jsx-a11y/click-events-have-key-events */
import dynamic from 'next/dynamic'
import Link from 'next/link'
import { ReactNode, useState } from 'react'
@@ -50,8 +51,12 @@ const DeveloperLayout = ({ children, enabled, docs, currentDoc }:DeveloperLayout
{
enabled === 'docs' && <>
-
-
+
+
+ - setNavbarOpen(false)} className='lg:hidden cursor-pointer py-1 px-4 rounded-md mb-2'>
+ 닫기
+
+
{
docs?.map(el => {
if(el.list) return
@@ -60,7 +65,7 @@ const DeveloperLayout = ({ children, enabled, docs, currentDoc }:DeveloperLayout
{
el.list.map(e =>
-
-
+
- setNavbarOpen(false)} className={`cursor-pointer px-4 py-2 rounded-md ${currentDoc === e.name ? 'bg-discord-blurple text-white' : 'hover:text-gray-500 dark:hover:text-white'}`}>
{e.name}
@@ -70,7 +75,7 @@ const DeveloperLayout = ({ children, enabled, docs, currentDoc }:DeveloperLayout
return
- -
+
- setNavbarOpen(false)} className={`cursor-pointer py-2 px-4 rounded-md ${currentDoc === el.name ? 'bg-discord-blurple text-white' : 'hover:text-gray-500 dark:hover:text-white'}`}>
{el.name}