Skip to content

Commit

Permalink
feat(beyondus):custom-careers-card
Browse files Browse the repository at this point in the history
  • Loading branch information
AswinAsok committed Jul 2, 2023
1 parent 6ed50ee commit 7ad5c64
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/Pages/Career/Career.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import styles from "./Career.module.css";
import CareersCard from "../../Components/CareersCard/CareersCard";
import ClosedCareersCard from "../../Components/ClosedCareers/ClosedCareers";
import axios from "axios";
import logo from "./assets/text.png";

const Career = () => {
let companies = require("./data/companies.json");
Expand Down Expand Up @@ -89,6 +90,22 @@ const Career = () => {
endless opportunities available on Career Labs
</div>
<div className={styles.cards_container}>
<div className={styles.beyond_us_card}>
<img className={styles.text_logo} src={logo} alt="" />
<p className={styles.text}>
<span>In Collaboration With:</span> Kerala Knowledge Economy
Mission.
</p>
<p className={styles.text}>
<span>Location:</span> Online/Remote
</p>
<p className={styles.text}>
<span>Prize Worth</span> 50K
</p>
<a href="https://harmless-editorial-5d7.notion.site/Beyond-Us-65c490bd2a1c4de1a3250eaf90c33412#03057d834cea436e99c7a6dc944f2b4b" target="_blank" rel="noopener noreferrer">
<button className={styles.applynowbtn}>Apply Now</button>
</a>
</div>
{newHiring &&
newHiring.map((role) => (
<CareersCard
Expand Down
45 changes: 45 additions & 0 deletions src/Pages/Career/Career.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -206,4 +206,49 @@
align-items: stretch;
row-gap: 1rem;
column-gap: 1rem;
}

/* beyond_us_card */

.beyond_us_card {
padding: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

background-image: url("./assets/starbg.png");
border-radius: 5px;

color: white;
display: flex;
flex-direction: column;
}

.text_logo {
width: 15rem;
font-family: "Poppins", sans-serif;
}

.text {
margin-top: 1rem;
font-family: "Poppins", sans-serif;
line-height: 20px;
font-weight: 500;
max-width: 250px;
}

.text span {
color: #f6e127;
}

.applynowbtn{
margin-top: 1rem;
background-color: #f6e127;
border: none;
border-radius: 5px;
padding: 0.5rem 1rem;
font-family: "Poppins", sans-serif;
font-weight: 600;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease-in-out;
color: #1e3760;
}
Binary file added src/Pages/Career/assets/starbg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/Pages/Career/assets/text.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 7ad5c64

Please sign in to comment.