From f12296597b140315a8a9037dc60f580cb0fc4a0b Mon Sep 17 00:00:00 2001 From: jangwonyoon Date: Mon, 20 Apr 2026 16:25:29 +0900 Subject: [PATCH 1/2] =?UTF-8?q?feat:=20=ED=9E=88=EC=96=B4=EB=A1=9C=20?= =?UTF-8?q?=ED=83=80=EC=9D=B4=ED=8B=80=20=EC=99=B8=EB=B6=80=20=EA=B3=B5?= =?UTF-8?q?=EA=B0=9C=EC=9A=A9=20=EB=AC=B8=EA=B5=AC=EB=A1=9C=20=EA=B0=9C?= =?UTF-8?q?=EC=84=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - HeroSection h1: FE 개발자 + Code Complete 2판 명시, 투표 메커니즘 강조 - subtitle: 내부용 AI 정책 문구 제거 → 독자 관점 문장으로 교체 - docusaurus.config.ts tagline 동일하게 업데이트 - docs/index.mdx: MemberGrid 중복 제거 (HeroSection 하단 그리드만 유지) Co-Authored-By: Claude Sonnet 4.6 --- docs/index.mdx | 5 ----- docusaurus.config.ts | 2 +- src/components/HeroSection.tsx | 6 +++--- 3 files changed, 4 insertions(+), 9 deletions(-) diff --git a/docs/index.mdx b/docs/index.mdx index df5f824..8854c10 100644 --- a/docs/index.mdx +++ b/docs/index.mdx @@ -6,7 +6,6 @@ hide_title: true --- import HeroSection from '@site/src/components/HeroSection'; -import MemberGrid from '@site/src/components/MemberGrid'; @@ -39,10 +38,6 @@ McConnell이 2004년에 쓴 책이지만 핵심 원칙(복잡도 관리·정보 | ✏️ 좋은 코드 쓰기 | 7-9장, 20-23장 | 좋은 루틴 · 방어적 프로그래밍 · PPP / 품질 · 협력 · 테스트 · 디버깅 | | 🔧 완성과 성장 | 24-26장, 31-34장 | 리팩터링 · 코드 튜닝 / 레이아웃 · 자기 설명 · 성격 · 장인정신 | -## 스터디원 - - - ## 기여하고 싶다면 오타·번역 제안·다른 시각의 의견은 [GitHub diff --git a/docusaurus.config.ts b/docusaurus.config.ts index 8607975..8324d44 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -4,7 +4,7 @@ import type * as Preset from '@docusaurus/preset-classic'; const config: Config = { title: 'Code Complete 2판 한글 스터디', - tagline: '함수랑 동아리 — Code Complete 2nd Edition 함께 읽기', + tagline: 'FE 개발자 7명이 Code Complete 2판을 읽고, 2026년에도 살아있는지 직접 투표했어요', favicon: 'img/favicon.jpeg', future: { diff --git a/src/components/HeroSection.tsx b/src/components/HeroSection.tsx index 93af60e..5c062e8 100644 --- a/src/components/HeroSection.tsx +++ b/src/components/HeroSection.tsx @@ -64,10 +64,10 @@ export default function HeroSection() {

함수랑 산악회

-

7명이 읽고 토론한 Code Complete 2판

+

FE 개발자 7명이 Code Complete 2판을 읽고, 2026년에도 살아있는지 직접 투표했어요

- 2026년 프론트엔드 현업 관점으로 다시 본 Steve McConnell의 고전. 멤버 의견 · 투표 · - Devil's Advocate는 AI가 건드리지 않은 원본 그대로예요. + 2026년 프론트엔드 현업 관점으로 다시 본 Steve McConnell의 고전. 각자의 경험으로 읽고, + 직접 투표하고, 치열하게 토론했어요.

From d17c7d26c7cc01388d644263132d3db4f01462bb Mon Sep 17 00:00:00 2001 From: jangwonyoon Date: Mon, 20 Apr 2026 16:28:35 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20MemberGrid(GitHub/LinkedIn)=20HeroSe?= =?UTF-8?q?ction=20=EC=95=84=EB=9E=98=EB=A1=9C=20=EC=9D=B4=EB=8F=99,=20?= =?UTF-8?q?=EC=A4=91=EB=B3=B5=20=EA=B7=B8=EB=A6=AC=EB=93=9C=20=EC=A0=9C?= =?UTF-8?q?=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - HeroSection에서 MemberCard 그리드(링크 없는 버전) 제거 - docs/index.mdx에 MemberGrid 복구, HeroSection 바로 아래 배치 - HeroSection members 배열 + MemberCard import 정리 Co-Authored-By: Claude Sonnet 4.6 --- docs/index.mdx | 3 ++ src/components/HeroSection.tsx | 69 +++------------------------------- 2 files changed, 8 insertions(+), 64 deletions(-) diff --git a/docs/index.mdx b/docs/index.mdx index 8854c10..40f779f 100644 --- a/docs/index.mdx +++ b/docs/index.mdx @@ -6,9 +6,12 @@ hide_title: true --- import HeroSection from '@site/src/components/HeroSection'; +import MemberGrid from '@site/src/components/MemberGrid'; + + ## 이 사이트는 무엇인가요 함수랑 산악회 7명이 진행한 Code Complete 2판 스터디 노트를 외부에 공개한 저장소예요. Steve diff --git a/src/components/HeroSection.tsx b/src/components/HeroSection.tsx index 5c062e8..527bcdc 100644 --- a/src/components/HeroSection.tsx +++ b/src/components/HeroSection.tsx @@ -1,62 +1,6 @@ import useBaseUrl from '@docusaurus/useBaseUrl'; -import MemberCard from './MemberCard'; -import type { MemberName } from './types'; import styles from './HeroSection.module.css'; -interface Member { - nickname: MemberName; - realName: string; - emoji: string; - role: string; - github?: string; - linkedin?: string; -} - -const members: readonly Member[] = [ - { - nickname: 'Alice', - realName: '소현', - emoji: '🦊', - role: '2년차 프론트엔드 개발자 (F-pretence)', - }, - { - nickname: 'Amber', - realName: '도윤', - emoji: '🐵', - role: '5년차 프론트엔드 개발자, 지금은 취준생', - }, - { - nickname: 'Crong', - realName: '규진', - emoji: '🦎', - role: '토큰 없으면 퇴근하는 1년차 프론트엔드 개발자', - }, - { - nickname: 'diego', - realName: '장원', - emoji: '🦉', - role: '운동은 안 하고 Claude에 월 50만원 쓰면서 데이터로 뇌 운동하는 5년차', - }, - { - nickname: 'Jay', - realName: '준근', - emoji: '🦜', - role: '에어팟 없으면 개발 못 하는 3년차 프론트엔드 개발자', - }, - { - nickname: 'Leo', - realName: '승완', - emoji: '🐻', - role: '아침밥 안 먹는 4년차 프론트엔드 개발자', - }, - { - nickname: 'zinii', - realName: '미진', - emoji: '🐿️', - role: 'Claude에게 직장을 빼앗기게 생긴 고민 개발자', - }, -]; - export default function HeroSection() { const heroImage = useBaseUrl('/img/members/hero.png'); @@ -64,20 +8,17 @@ export default function HeroSection() {

함수랑 산악회

-

FE 개발자 7명이 Code Complete 2판을 읽고, 2026년에도 살아있는지 직접 투표했어요

+

+ FE 개발자 7명이 Code Complete 2판을 읽고, 2026년에도 살아있는지 직접 투표했어요 +

- 2026년 프론트엔드 현업 관점으로 다시 본 Steve McConnell의 고전. 각자의 경험으로 읽고, - 직접 투표하고, 치열하게 토론했어요. + 2026년 프론트엔드 현업 관점으로 다시 본 Steve McConnell의 고전. 각자의 경험으로 읽고, 직접 + 투표하고, 치열하게 토론했어요.

함수랑 산악회 7인 캐릭터
-
- {members.map((m) => ( - - ))} -
); }