Skip to content

Commit

Permalink
chore: change link hrefs and remove framer import
Browse files Browse the repository at this point in the history
  • Loading branch information
jotalis committed Oct 3, 2024
1 parent 1d807e2 commit 5601662
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions apps/site/src/app/(home)/sections/GetInvolved/GetInvolved.tsx
Original file line number Diff line number Diff line change
@@ -1,28 +1,24 @@
"use client";
import Container from "react-bootstrap/Container";
import Button from "react-bootstrap/Button";

import anteater_left from "@/assets/images/involved_anteater_left.png";
import anteater_right from "@/assets/images/involved_anteater_right.png";

import styles from "./GetInvolved.module.scss";

import { motion } from "framer-motion";

const GetInvolved = () => {
const sectionHeading = <h2 className={styles.headingText}>GET INVOLVED</h2>;
const leftBubbleText = <p>Want to develop your first project?</p>;
const rightBubbleText = (
<p>Otherwise, if you have some experience under your belt,</p>
);
const applyLink = (
<Button href="#" type="button" className={styles.applyButton}>
<Button href="/apply" type="button" className={styles.applyButton}>
Apply as a Hacker
</Button>
);

const mentorLink = (
<Button href="#" type="button" className={styles.applyButton}>
<Button href="/mentor" type="button" className={styles.applyButton}>
Apply as a Mentor
</Button>
);
Expand Down

0 comments on commit 5601662

Please sign in to comment.