Skip to content

Commit

Permalink
chore :: add link
Browse files Browse the repository at this point in the history
  • Loading branch information
dutexion committed Jul 9, 2024
1 parent 8e02ed2 commit 5f731a1
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/components/landing/FirstContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import styled from '@emotion/styled';
import MouseScroll from '../../assets/MouseScroll.svg';
import LandingBgImg from '../../assets/LandingBgImg.png';
import ArrowDoubleDown from '@/assets/ArrowDoubleDown.svg';
import { color } from '@team-entry/design_system/build/style/color';
import { Link } from 'react-router-dom';
// import { useNavigate } from 'react-router-dom';

// const navigate = useNavigate();
Expand All @@ -16,7 +18,9 @@ const First = () => {
<br />
대덕소프트웨어 마이스터고
</_Title>
<_Button>원서접수</_Button>
<Link to="/main">
<_Button>원서접수</_Button>
</Link>
</_TitleBox>
<Scroll src={ArrowDoubleDown} />
</_Wrapper>
Expand Down Expand Up @@ -97,6 +101,12 @@ const _Button = styled.button`
padding: 16px 48px;
font-size: 20px;
}
&:hover {
background-color: #ff9154;
border-color: #ff9154;
color: #ffffff;
}
`;

const Scroll = styled.img`
Expand Down

0 comments on commit 5f731a1

Please sign in to comment.