Skip to content

Commit

Permalink
Fix: 프로젝트 내 각종 에러 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
sayyyho committed Aug 27, 2024
1 parent 8b43daa commit 275ebb3
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 335 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ yarn-debug.log*
yarn-error.log*

node_modules
/dist
140 changes: 0 additions & 140 deletions dist/assets/index-BSSa90UF.js

This file was deleted.

176 changes: 0 additions & 176 deletions dist/assets/index-BqHKD4MV.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/assets/index-DiwrgTda.css

This file was deleted.

Binary file removed dist/assets/kaboologo-uRFU_VBh.png
Binary file not shown.
1 change: 0 additions & 1 deletion dist/assets/react-CHdo91hT.svg

This file was deleted.

13 changes: 0 additions & 13 deletions dist/index.html

This file was deleted.

1 change: 0 additions & 1 deletion dist/vite.svg

This file was deleted.

12 changes: 9 additions & 3 deletions src/components/Common/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,26 @@ import React from "react";
import * as styles from "./Header.styled";
import logo from "../../assets/images/kaboologo.png";
import peoplelogo from "../../assets/images/peoplelogo.png";
import { useNavigate } from "react-router-dom";

function Header() {
const navigate = useNavigate();
return (
<styles.HeaderContainer>
<styles.HeaderSubContainer>
<styles.LogoWrapper>
<styles.LogoWrapper
onClick={() => {
navigate("/");
}}
>
<styles.Logo src={logo} alt="Logo" />
<styles.ServiceName>카부커넥션</styles.ServiceName>
</styles.LogoWrapper>

<styles.NavBar>
<styles.NavItem href="/">카부 게시판</styles.NavItem>
<styles.NavItem href="#about">카부 프로젝트</styles.NavItem>
<styles.NavItem href="#services">카부 편의</styles.NavItem>
<styles.NavItem href="/">카부 프로젝트</styles.NavItem>
<styles.NavItem href="/">카부 편의</styles.NavItem>
<styles.NavItem href="/chat">카부 커넥션</styles.NavItem>
</styles.NavBar>
</styles.HeaderSubContainer>
Expand Down
Empty file removed src/pages/VideoPage.js
Empty file.

0 comments on commit 275ebb3

Please sign in to comment.