diff --git a/src/Pages/Pathway/components/WhoShouldAttend/WhoShouldAttend.jsx b/src/Pages/Pathway/components/WhoShouldAttend/WhoShouldAttend.jsx index 9c72cc65b..727d80388 100644 --- a/src/Pages/Pathway/components/WhoShouldAttend/WhoShouldAttend.jsx +++ b/src/Pages/Pathway/components/WhoShouldAttend/WhoShouldAttend.jsx @@ -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 ( -
-
-
-

Who should Attend?

+ return ( +
+
+
+

Who should Attend?

+
+
+ {content.map((item, index) => { + return ( +
+
+ {item.title} +
+ line +
+
+
+

{item.desc}

+
-
- { - content.map((item, index) => { - return ( -
-
- - {item.title} - -
- line -
-
-
-

{item.desc}

-
-
- ) - }) - } -
-
- ) + ); + })} +
+
+ ); }