Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/pages/help/Help.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import HelpSidebar from '@/pages/help/components/HelpSidebar';
import HelpSection from '@/pages/help/components/HelpSection';
import { helpCategories } from '@/pages/help/constants';
import styles from '@/pages/help/Help.module.scss';
import logoImg from '@/assets/images/logo.webp';

/**
*
Expand Down Expand Up @@ -108,7 +109,7 @@ const Help: React.FC = () => {
onClick={() => setIsSidebarOpen(prev => !prev)}
aria-label="목차 열기"
>
<img src="src/assets/images/logo.webp" alt="목차" />
<img src={logoImg} alt="목차" />
</button>

<Footer />
Expand Down
3 changes: 2 additions & 1 deletion src/shared/navbar/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import { RiMenuLine, RiCloseLine } from 'react-icons/ri';
import CustomButton from '@/shared/custombutton/CustomButton';
import styles from '@/shared/navbar/Navbar.module.scss';
import { useNavbar } from '@/hooks/useNavbar';
import logoImg from '@/assets/images/logo.webp';

/**
*
Expand All @@ -33,7 +34,7 @@ const Navbar: React.FC = () => {
return (
<div className={styles.navbar}>
<div className={styles.logoBox} onClick={goHome} style={{ cursor: 'pointer' }}>
<img className={styles.logoImage} src="src/assets/images/logo.webp" />
<img className={styles.logoImage} src={logoImg} />
<span className={styles.logoTitle}>문제어때</span>
</div>

Expand Down
Loading