Skip to content

Commit

Permalink
chore: 이미지 파일명 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
YesHyeon committed Sep 2, 2023
1 parent 30aa19d commit da1c21f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/pages/landing/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { useRef } from 'react';
import { Link } from 'react-router-dom';

import {
StartWrapper,
ScrollWrapper,
Expand All @@ -10,27 +11,26 @@ import {
LastWrapper,
ContentWrapper,
} from './index.styles';
import LogoImg from '@/assets/images/logo.webp';
import ScrollArrow from '@/assets/icons/scrollArrow.webp';
import Rabbit from '@/assets/images/rabbit.webp';
import BottomButton from '@/components/commons/bottomButton';
import { useComponentOnScreen } from '@/hooks/useComponentOnScreen';

import Rabbit from '@/assets/images/rabbit.webp';
import Logo from '@/assets/images/logo.webp';
import ScrollArrow from '@/assets/icons/scrollArrow.webp';
import landing1 from '@/assets/images/landing1.webp';
import landing2 from '@/assets/images/landing2.webp';
import landing3 from '@/assets/images/landing3.webp';
import landing4 from '@/assets/images/landing4.webp';
import landing5 from '@/assets/images/landing5.webp';
import landing6 from '@/assets/images/landing6.webp';

import { useComponentOnScreen } from '@/hooks/useComponentOnScreen';

const Landing = () => {
const introRef = useRef<HTMLDivElement>(null);
const firstRef = useRef<HTMLDivElement>(null);
const secondRef = useRef<HTMLDivElement>(null);
const thirdRef = useRef<HTMLDivElement>(null);
const fourthRef = useRef<HTMLDivElement>(null);
const lastRef = useRef<HTMLDivElement>(null);

useComponentOnScreen([
introRef,
firstRef,
Expand Down Expand Up @@ -75,7 +75,7 @@ const Landing = () => {
<MainContainer>
<StartWrapper>
<div className="logo-header">쉽고 빠른 약속 정하기</div>
<img className="logo" src={LogoImg} />
<img className="logo" src={Logo} />
<img className="rabbit" src={Rabbit} />
<ScrollWrapper>
<img className="arrow" src={ScrollArrow} />
Expand All @@ -90,7 +90,7 @@ const Landing = () => {
<img className="chat" src={landing1} />
<div className="section">
<div className="section-logo">
<img className="logo" src={LogoImg} />
<img className="logo" src={Logo} />
</div>
<div className="section-text">도와드릴게요!</div>
</div>
Expand Down

0 comments on commit da1c21f

Please sign in to comment.