Skip to content

Commit

Permalink
✨feat: sectionSelectPage
Browse files Browse the repository at this point in the history
jungbee2 committed Jan 6, 2025
1 parent dfed58e commit e298047
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions src/Pages/SectionSelectPage.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
<<<<<<< HEAD
import { Link } from 'react-router-dom';
import 메인 from '../assets/images/ex.png';

@@ -15,20 +14,14 @@ const styles: { [key: string]: React.CSSProperties } = {
fontWeight:'bold',
},
};
=======
import { useNavigate } from "react-router-dom";
>>>>>>> 213aea6d4dc9c612a172eca13e95c55c74dbae0e

const SectionSelectPage = () => {
const navigate = useNavigate();

return (
<div>
<div style={{ position: 'relative' }}>
<img src={메인} alt="메인" style={{ width: '100%' }} />
</div>
<div>
<<<<<<< HEAD
<Link to="/signup" style={{ textDecoration: 'none' }}>
<button
style={{ ...styles.button, position: 'absolute', top: '70%', left: '30%', transform: 'translate(-50%, -50%)' }}
@@ -50,14 +43,9 @@ const SectionSelectPage = () => {
디자인 파트
</button>
</Link>
=======
<button onClick={() => navigate("/backend-question")}>백엔드 파트</button>
<button onClick={() => navigate("/frontend-question")}>프론트엔드 파트</button>
<button onClick={() => navigate("/design-question")}>디자인 파트 </button>
>>>>>>> 213aea6d4dc9c612a172eca13e95c55c74dbae0e
</div>
</div>
)
}

export default SectionSelectPage
export default SectionSelectPage

0 comments on commit e298047

Please sign in to comment.