diff --git a/src/app/_components/GNB.tsx b/src/app/_components/GNB.tsx
new file mode 100644
index 00000000..371cf012
--- /dev/null
+++ b/src/app/_components/GNB.tsx
@@ -0,0 +1,37 @@
+import Link from 'next/link';
+
+import Icon from '@/src/components/Icon';
+
+const GNB = () => {
+ const navItems = [
+ { href: '/', icon: , name: '홈' },
+ { href: '/chat', icon: , name: '채팅' },
+ { href: '/write', icon: , name: '글쓰기' },
+ { href: '/users', icon: , name: '유저' },
+ { href: '/profile', icon: , name: '프로필' },
+ ];
+
+ return (
+
+ );
+};
+
+export default GNB;