더북(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>
  );
}