i-darrshan commited on
Commit
a58a274
·
1 Parent(s): bb51b11
frontend/src/components/JobCard.jsx CHANGED
@@ -104,7 +104,7 @@ const JobCard = ({ job }) => {
104
  return (
105
  <JobCardContainer data-testid='job-card'>
106
  <JobImageContainer>
107
- <JobImage src={job.imageUrl} alt={job.title} />
108
  <JobOverlay>
109
  {jobType} | {schedule}
110
  </JobOverlay>
 
104
  return (
105
  <JobCardContainer data-testid='job-card'>
106
  <JobImageContainer>
107
+ {/* <JobImage src={job.imageUrl} alt={job.title} /> */}
108
  <JobOverlay>
109
  {jobType} | {schedule}
110
  </JobOverlay>
frontend/src/data/jobdata.js CHANGED
@@ -7,7 +7,6 @@ const jobData = [
7
  status: "Opened",
8
  vacancies: 1,
9
  description: "Lead the sales team to drive growth, develop strategies, and manage key client relationships for business success.",
10
- imageUrl: "https://via.placeholder.com/320x180", // Placeholder image
11
  },
12
  {
13
  id: 2,
@@ -17,7 +16,6 @@ const jobData = [
17
  status: "Closed",
18
  vacancies: 0,
19
  description: "Design and develop websites, ensuring a smooth user experience while collaborating with product and design teams.",
20
- imageUrl: "https://via.placeholder.com/320x180", // Placeholder image
21
  },
22
  {
23
  id: 3,
@@ -27,7 +25,6 @@ const jobData = [
27
  status: "Closed",
28
  vacancies: 0,
29
  description: "Develop robust software solutions, write efficient code, and mentor junior developers in a fast-paced environment.",
30
- imageUrl: "https://via.placeholder.com/320x180", // Placeholder image
31
  },
32
  {
33
  id: 4,
@@ -37,7 +34,6 @@ const jobData = [
37
  status: "Opened",
38
  vacancies: 1,
39
  description: "Maintain and optimize IT infrastructure, ensuring optimal system performance and quickly addressing any technical issues.",
40
- imageUrl: "https://via.placeholder.com/320x180", // Placeholder image
41
  },
42
  {
43
  id: 5,
@@ -47,7 +43,6 @@ const jobData = [
47
  status: "Opened",
48
  vacancies: 5,
49
  description: "Curate scientific content, collaborate with researchers, and contribute to the development of groundbreaking projects.",
50
- imageUrl: "https://via.placeholder.com/320x180", // Placeholder image
51
  },
52
  ];
53
 
 
7
  status: "Opened",
8
  vacancies: 1,
9
  description: "Lead the sales team to drive growth, develop strategies, and manage key client relationships for business success.",
 
10
  },
11
  {
12
  id: 2,
 
16
  status: "Closed",
17
  vacancies: 0,
18
  description: "Design and develop websites, ensuring a smooth user experience while collaborating with product and design teams.",
 
19
  },
20
  {
21
  id: 3,
 
25
  status: "Closed",
26
  vacancies: 0,
27
  description: "Develop robust software solutions, write efficient code, and mentor junior developers in a fast-paced environment.",
 
28
  },
29
  {
30
  id: 4,
 
34
  status: "Opened",
35
  vacancies: 1,
36
  description: "Maintain and optimize IT infrastructure, ensuring optimal system performance and quickly addressing any technical issues.",
 
37
  },
38
  {
39
  id: 5,
 
43
  status: "Opened",
44
  vacancies: 5,
45
  description: "Curate scientific content, collaborate with researchers, and contribute to the development of groundbreaking projects.",
 
46
  },
47
  ];
48
 
frontend/src/data/leaders.js CHANGED
@@ -23,7 +23,7 @@ const leaders = [
23
  },
24
  },
25
  {
26
- name: "Mrs. Sindhu K.",
27
  title: "Consultant Heading IT & Co-Founder",
28
  bio: "Mrs. Sindhu K. is the Consultant Heading IT and Co-Founder of Genomatics. With her expertise in IT infrastructure and genomic data management, she ensures seamless tech solutions to support groundbreaking genomic research.",
29
  image: Guide3, // Image URL for leader
@@ -32,7 +32,7 @@ const leaders = [
32
  },
33
  },
34
  {
35
- name: "Mr. Nitin C",
36
  title: "Head of AI",
37
  bio: "Mr. Nitin, a Data Scientist at Genomatics, drives AI innovation in healthcare and life sciences. With 5+ years of experience, he specializes in applying Machine Learning to healthcare. Previously, at PayPal’s Global Fraud Risk Automation team, he developed data-driven fraud mitigation strategies.",
38
  image: Guide4, // Image URL for leader
 
23
  },
24
  },
25
  {
26
+ name: "Sindhu K.",
27
  title: "Consultant Heading IT & Co-Founder",
28
  bio: "Mrs. Sindhu K. is the Consultant Heading IT and Co-Founder of Genomatics. With her expertise in IT infrastructure and genomic data management, she ensures seamless tech solutions to support groundbreaking genomic research.",
29
  image: Guide3, // Image URL for leader
 
32
  },
33
  },
34
  {
35
+ name: "Nitin C",
36
  title: "Head of AI",
37
  bio: "Mr. Nitin, a Data Scientist at Genomatics, drives AI innovation in healthcare and life sciences. With 5+ years of experience, he specializes in applying Machine Learning to healthcare. Previously, at PayPal’s Global Fraud Risk Automation team, he developed data-driven fraud mitigation strategies.",
38
  image: Guide4, // Image URL for leader
frontend/src/pages/Home.jsx CHANGED
@@ -11,10 +11,11 @@ const Home = () => {
11
  autoPlay
12
  loop
13
  muted
 
14
  >
15
  <source
16
  src={Hero_video}
17
- type="video/webm"
18
  />
19
  Your browser does not support the video tag.
20
  </video>
 
11
  autoPlay
12
  loop
13
  muted
14
+ preload="auto"
15
  >
16
  <source
17
  src={Hero_video}
18
+ type="video/mp4"
19
  />
20
  Your browser does not support the video tag.
21
  </video>