Skip to content

Commit

Permalink
refactor: rename Mentor section to Involved
Browse files Browse the repository at this point in the history
  • Loading branch information
jotalis committed Sep 27, 2024
1 parent 783884d commit 47ee8c6
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apps/site/src/app/(home)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export const revalidate = 60;

import Landing from "./sections/Landing";
import Intro from "./sections/Intro";
import Mentor from "./sections/Mentor";
import Involved from "./sections/Involved";
import Sponsors from "./sections/Sponsors";
import FAQ from "./sections/FAQ";

Expand All @@ -13,7 +13,7 @@ const Home = () => {
<div className={styles.home}>
<Landing />
{/* <Intro /> */}
<Mentor />
<Involved />
{/* <Sponsors /> */}
{/* <FAQ /> */}
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Button from "react-bootstrap/Button";
import anteater_left from "@/assets/images/involved_anteater_left.svg";
import anteater_right from "@/assets/images/involved_anteater_right.svg";

import styles from "./Mentor.module.scss";
import styles from "./Involved.module.scss";

const Mentor = () => {
const sectionHeader = <h2 className={styles.headerText}>GET INVOLVED</h2>;
Expand Down
1 change: 1 addition & 0 deletions apps/site/src/app/(home)/sections/Involved/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./Involved";
1 change: 0 additions & 1 deletion apps/site/src/app/(home)/sections/Mentor/index.ts

This file was deleted.

0 comments on commit 47ee8c6

Please sign in to comment.