더북(TheBook)
// Section 컴포넌트: 세부 콘텐츠
function Section() {
  return (
    <section>
      <h3>More Details</h3>
    </section>
  );
}
// Aside 컴포넌트: 광고, 추가 정보
function Aside() {
  return (
    <aside>
      <h3>Related Links</h3>
    </aside>
  );
}
// Footer 컴포넌트: 저작권 정보, 연락처
function Footer() {
  return (
    <footer>
      <p>© 2025 My Website. All rights reserved.</p>
    </footer>
  );
}

신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.