Skip to content

Commit

Permalink
fix(pathway):content-updations
Browse files Browse the repository at this point in the history
  • Loading branch information
AswinAsok committed Oct 25, 2023
1 parent 7e7fee4 commit d9fd8d4
Showing 1 changed file with 48 additions and 52 deletions.
100 changes: 48 additions & 52 deletions src/Pages/Pathway/components/WhoShouldAttend/WhoShouldAttend.jsx
Original file line number Diff line number Diff line change
@@ -1,58 +1,54 @@
import React from "react"
import styles from './WhoShouldAttend.module.css'
import line from '../../assets/line.webp';
import React from "react";
import styles from "./WhoShouldAttend.module.css";
import line from "../../assets/line.webp";

const content = [
{
id: 1,
title: "Students interested in AI and machine learning.",
desc: "I need latency to be milliseconds or seconds, but my batch job is taking minutes or hours to run each time."
},
{
id: 2,
title: "Professionals seeking to upskill in AI.",
desc: "I need latency to be milliseconds or seconds, but my batch job is taking minutes or hours to run each time."
},
{
id: 3,
title: "Enthusiasts eager to explore LLMs and AI frameworks.",
desc: "I need latency to be milliseconds or seconds, but my batch job is taking minutes or hours to run each time."
},
{
id: 4,
title: "Anyone looking to break into the exciting world of AI",
desc: "I need latency to be milliseconds or seconds, but my batch job is taking minutes or hours to run each time."
}
]
{
id: 1,
title: "Students interested in AI and machine learning.",
desc: "You can build your skills up and learn about the latest technologies to boost up your resume with the help of Pathway.",
},
{
id: 2,
title: "Professionals seeking to upskill in AI.",
desc: "With Pathway, you can stay updated on the latest technologies and upskill your AI knowledge.",
},
{
id: 3,
title: "Enthusiasts eager to explore LLMs and AI frameworks.",
desc: "You can build highly efficient LLM apps by implementing the most effective AI frameworks with the help of Pathway.",
},
{
id: 4,
title: "Anyone looking to break into the exciting world of AI",
desc: "If you're someone curious to learn about AI and related fields, Pathway lets you grab a complete hold of the concepts without any prerequisite knowledge.",
},
];

export default function WhoShouldAttend() {
return (
<section id="who" className={styles.WhoShouldAttend}>
<div className={styles.Overview_container_head}>
<hr />
<p>Who should Attend?</p>
return (
<section id="who" className={styles.WhoShouldAttend}>
<div className={styles.Overview_container_head}>
<hr />
<p>Who should Attend?</p>
</div>
<div className={styles.section}>
{content.map((item, index) => {
return (
<div key={index} className={styles.container}>
<div className={styles.box}>
<b className={styles.box_top}>{item.title}</b>
<div className={styles.box_mid}>
<img src={line} alt="line" />
</div>
</div>
<div className={styles.box_bottom}>
<p>{item.desc}</p>
</div>
</div>
<div className={styles.section}>
{
content.map((item, index) => {
return (
<div key={index} className={styles.container}>
<div className={styles.box}>
<b className={styles.box_top}>
{item.title}
</b>
<div className={styles.box_mid}>
<img src={line} alt="line"/>
</div>
</div>
<div className={styles.box_bottom}>
<p>{item.desc}</p>
</div>
</div>
)
})
}
</div>
</section>
)
);
})}
</div>
</section>
);
}

0 comments on commit d9fd8d4

Please sign in to comment.