export default function BootCamp()

in src/pages/bootcamp/index.tsx [13:31]


export default function BootCamp(): JSX.Element {
  return (
    <CommonLayout>
      <ColorCard {...BOOTCAMP_PAGE_CONFIG.headerCard} />
      <div className={clsx(styles.wrap, "global-width-layout flex")}>
        <div className={styles.leftContent}>
          <TextPic />
          <MainContent />
        </div>
        <div className={styles.navLinkWrap}>
          <LinkNav
            className={styles.navLinkComp}
            config={LINK_NAV_CONFIG}
          ></LinkNav>
        </div>
      </div>
    </CommonLayout>
  );
}