Skip to content

Commit

Permalink
Updated images from jpg/png to webp
Browse files Browse the repository at this point in the history
Signed-off-by: Hemashree M S <[email protected]>
  • Loading branch information
Hemashree21 committed Jun 5, 2024
1 parent 7ce2dbe commit f6eb3d2
Show file tree
Hide file tree
Showing 27 changed files with 16 additions and 16 deletions.
Binary file removed public/assets/age.png
Binary file not shown.
Binary file added public/assets/age.webp
Binary file not shown.
Binary file removed public/assets/location.png
Binary file not shown.
Binary file added public/assets/location.webp
Binary file not shown.
Binary file removed public/assets/nurse-services.jpg
Binary file not shown.
Binary file added public/assets/nurse-services.webp
Binary file not shown.
Binary file removed public/assets/patient.jpg
Binary file not shown.
Binary file added public/assets/patient.webp
Binary file not shown.
Binary file removed public/assets/profile1.png
Binary file not shown.
Binary file added public/assets/profile1.webp
Binary file not shown.
Binary file removed public/assets/profile2.png
Binary file not shown.
Binary file added public/assets/profile2.webp
Binary file not shown.
Binary file removed public/assets/profile3.png
Binary file not shown.
Binary file added public/assets/profile3.webp
Binary file not shown.
Binary file removed public/assets/profile4.png
Binary file not shown.
Binary file added public/assets/profile4.webp
Binary file not shown.
Binary file removed public/assets/profile5.png
Binary file not shown.
Binary file added public/assets/profile5.webp
Binary file not shown.
Binary file removed public/assets/qualification.png
Binary file not shown.
Binary file added public/assets/qualification.webp
Binary file not shown.
Binary file removed public/assets/services.png
Binary file not shown.
Binary file added public/assets/services.webp
Binary file not shown.
4 changes: 2 additions & 2 deletions src/Pages/Nurses.jsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React from 'react';
import { useLocation } from 'react-router-dom';
import { Nurse } from '../data/Nurse';
import hoslocation from '../../public/assets/location.png';
import degree from '../../public/assets/qualification.png';
import hoslocation from '../../public/assets/location.webp';
import degree from '../../public/assets/qualification.webp';

const Nurses = () => {
const location = useLocation();
Expand Down
4 changes: 2 additions & 2 deletions src/Pages/Patients.jsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React from 'react';
import { useLocation } from 'react-router-dom';
import { Patient } from '../data/Patient';
import ageyrs from '../../public/assets/age.png';
import serve from '../../public/assets/services.png';
import ageyrs from '../../public/assets/age.webp';
import serve from '../../public/assets/services.webp';

const Patients = () => {
const location = useLocation();
Expand Down
4 changes: 2 additions & 2 deletions src/Pages/Services.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useState } from 'react';
import patient from '../../public/assets/patient.jpg';
import nurse from '../../public/assets/nurse-services.jpg';
import patient from '../../public/assets/patient.webp';
import nurse from '../../public/assets/nurse-services.webp';
import { useNavigate } from 'react-router-dom';

const Services = () => {
Expand Down
10 changes: 5 additions & 5 deletions src/data/Nurse.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import profile1 from '../../public/assets/profile1.png';
import profile2 from '../../public/assets/profile2.png';
import profile3 from '../../public/assets/profile3.png';
import profile4 from '../../public/assets/profile4.png';
import profile5 from '../../public/assets/profile5.png';
import profile1 from '../../public/assets/profile1.webp';
import profile2 from '../../public/assets/profile2.webp';
import profile3 from '../../public/assets/profile3.webp';
import profile4 from '../../public/assets/profile4.webp';
import profile5 from '../../public/assets/profile5.webp';

export const Nurse = [
{
Expand Down
10 changes: 5 additions & 5 deletions src/data/Patient.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import profile1 from '../../public/assets/profile1.png';
import profile2 from '../../public/assets/profile2.png';
import profile3 from '../../public/assets/profile3.png';
import profile4 from '../../public/assets/profile4.png';
import profile5 from '../../public/assets/profile5.png';
import profile1 from '../../public/assets/profile1.webp';
import profile2 from '../../public/assets/profile2.webp';
import profile3 from '../../public/assets/profile3.webp';
import profile4 from '../../public/assets/profile4.webp';
import profile5 from '../../public/assets/profile5.webp';

export const Patient = [
{
Expand Down

0 comments on commit f6eb3d2

Please sign in to comment.