> ## Documentation Index
> Fetch the complete documentation index at: https://docs.gliit.me/llms.txt
> Use this file to discover all available pages before exploring further.

# 릴리즈 노트

export const releases = [{
  date: "2026년 9월 10일",
  title: "구조와 흐름 피드백 개선",
  description: "구조와 흐름 피드백이 더 정확해졌습니다. 문단 나누기·삭제·추가·순서 바꾸기 4가지 유형으로 안내하고, 글의 장르에 맞게 구조를 분석합니다. 어디를 고쳐야 하는지 문장 단위로 표시합니다."
}, {
  date: "2026년 9월 10일",
  title: "회원 탈퇴 기능 추가",
  description: "설정에서 직접 계정을 탈퇴할 수 있습니다."
}, {
  date: "2026년 9월 10일",
  title: "만료된 클래스 활성화 기능 추가",
  description: "만료된 클래스를 목록에서 확인할 수 있습니다. 클래스를 다시 활성화하면 종료일이 자동으로 초기화됩니다."
}];

<div style={{ maxWidth: '768px', margin: '0 auto', padding: '48px 24px', fontFamily: 'system-ui, -apple-system, sans-serif', color: '#1a1a1a' }}>
  <h1 style={{ fontSize: '32px', fontWeight: '700', marginBottom: '8px' }}>릴리즈 노트</h1>
  <p style={{ color: '#666', fontSize: '15px', marginBottom: '48px' }}>글잇의 새로운 기능과 변경 사항을 알려드립니다.</p>

  <hr style={{ border: 'none', borderTop: '1px solid #e5e5e5', marginBottom: '40px' }} />

  {releases.map((release, i) => (
    <div key={i}>
      {i > 0 && <hr style={{ border: 'none', borderTop: '1px solid #e5e5e5', margin: '40px 0' }} />}
      <div style={{ display: 'flex', gap: '40px', marginBottom: '0' }}>
        <div style={{ minWidth: '120px', flexShrink: 0 }}>
          <span style={{ fontSize: '14px', color: '#888' }}>{release.date}</span>
        </div>
        <div style={{ flex: 1 }}>
          <h2 style={{ fontSize: '20px', fontWeight: '700', marginTop: 0, marginBottom: '10px' }}>{release.title}</h2>
          {release.sections ? (
            release.sections.map((section, j) => (
              <div key={j} style={{ marginTop: j === 0 ? '8px' : '24px' }}>
                <h3 style={{ fontSize: '15px', fontWeight: '600', marginBottom: '6px', margin: 0 }}>{section.subtitle}</h3>
                <p style={{ fontSize: '14px', color: '#444', lineHeight: '1.8', margin: 0 }} dangerouslySetInnerHTML={{ __html: section.description }} />
              </div>
            ))
          ) : (
            <p style={{ fontSize: '14px', color: '#444', lineHeight: '1.8', margin: 0 }} dangerouslySetInnerHTML={{ __html: release.description }} />
          )}
        </div>
      </div>
    </div>
    ))}
</div>
