Skip to content

Commit

Permalink
fix: add back removed buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
shriram-sg committed May 24, 2024
1 parent fe9a3da commit 036be0f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/EventsSection/Events.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Carousel from "react-multi-carousel";
import { EventData } from "../../data/EventData";
import styles from "./Events.module.css";
import EventCard from "./EventCard";
/*import Button from "../Button";*/
import Button from "../Button";

const responsive = {
desktop: {
Expand Down Expand Up @@ -35,7 +35,7 @@ function Events() {
We've got exciting events lined up to fuel your tech passion.
Get ready to learn, connect, and create with the Tech Club.
</p>
{/*<Button align={"left"} />*/}
<Button align={"left"} />
<div className={styles.pagination}>
<div className={`${styles.dot} ${styles.active}`}></div>
<div className={styles.dot}></div>
Expand Down
11 changes: 11 additions & 0 deletions frontend/src/components/HeroSection/Hero.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,17 @@ function Hero() {
<h1 className={styles.title}>TECH CLUB</h1>
<span className={styles.subtitle}>LET&apos;S BUILD THE MATRIX</span>
</div>
<div className={styles.btnContainer}>
<a href='#' className={styles.btn}>
EXPLORE
</a>
<img
className={styles.btnImg}
loading='lazy'
src='\src\assets\Arrow-Down.svg'
alt='Arrow'
/>
</div>
</div>
</div>
</section>
Expand Down

0 comments on commit 036be0f

Please sign in to comment.