Skip to content

Commit

Permalink
feat: add recruit link
Browse files Browse the repository at this point in the history
  • Loading branch information
aube-dev committed Sep 1, 2023
1 parent a6f6ee6 commit 0cd18d7
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions src/components/main/RecruitSection/RecruitSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import * as styles from './RecruitSection.css';
import UnderScore from '@/assets/icons/UnderScore.svg';
import Flower from '@/assets/icons/Flower.svg';
import ArrowTop from '@/assets/icons/ArrowTop.svg';
import Link from 'next/link';

const RecruitSection = () => (
<section className={styles.container}>
Expand All @@ -21,16 +22,22 @@ const RecruitSection = () => (
<br />
함께 합니다.
</span>
<button className={styles.button}>
<span className={styles.buttonText}>Apply</span>
</button>
<Link
href="https://forms.gle/LyodekmPLy57beVr8"
target="_blank"
rel="noreferrer noopener"
>
<button className={styles.button}>
<span className={styles.buttonText}>Apply</span>
</button>
</Link>
<div className={styles.descriptionWrap}>
<ArrowTop className={styles.arrowIcon} color={COLORS.primary.green} />
<span className={`${styles.hipiText} hipi`}>
3기 모집
<br />
2023.09.01 ~<br />
2023.09.08
2023.09.02 ~<br />
2023.09.10
</span>
</div>
</section>
Expand Down

0 comments on commit 0cd18d7

Please sign in to comment.