aboutsummaryrefslogtreecommitdiff
path: root/react-frontend/src
diff options
context:
space:
mode:
Diffstat (limited to 'react-frontend/src')
-rw-r--r--react-frontend/src/App.js9
-rw-r--r--react-frontend/src/images/clark.pngbin0 -> 21879118 bytes
-rw-r--r--react-frontend/src/images/julia.jpgbin0 -> 1059796 bytes
-rw-r--r--react-frontend/src/images/michael.jpgbin0 -> 115927 bytes
4 files changed, 6 insertions, 3 deletions
diff --git a/react-frontend/src/App.js b/react-frontend/src/App.js
index 982f6d4..1461c5a 100644
--- a/react-frontend/src/App.js
+++ b/react-frontend/src/App.js
@@ -2,6 +2,9 @@
import React, {useEffect, useState} from 'react';
import WatchDogs from './components/WatchDogs.js';
import reagan from './images/reagan.png';
+import julia from './images/julia.jpg';
+import clark from './images/clark.png';
+import michael from './images/michael.jpg';
import previewwatchdog from './images/previewwatchdog.png';
import mainlogo from './images/mainlogo.png';
@@ -97,21 +100,21 @@ function App() {
<div id="people-holder">
<div class="team-person-holder">
<div class="team-person">
- <img src="" height="100%"></img>
+ <img src={clark} height="100%"></img>
</div>
<p class="team-text">Clark Oh-Willeke</p>
</div>
<div class="team-person-holder">
<div class="team-person">
- <img src="" height="100%"></img>
+ <img src={julia} height="100%"></img>
</div>
<p class="team-text">Julia McCauley</p>
</div>
<div class="team-person-holder">
<div class="team-person">
- <img src="" height="100%"></img>
+ <img src={michael} height="100%"></img>
</div>
<p class="team-text">Michael Foiani</p>
</div>
diff --git a/react-frontend/src/images/clark.png b/react-frontend/src/images/clark.png
new file mode 100644
index 0000000..32829b4
--- /dev/null
+++ b/react-frontend/src/images/clark.png
Binary files differ
diff --git a/react-frontend/src/images/julia.jpg b/react-frontend/src/images/julia.jpg
new file mode 100644
index 0000000..a30ce90
--- /dev/null
+++ b/react-frontend/src/images/julia.jpg
Binary files differ
diff --git a/react-frontend/src/images/michael.jpg b/react-frontend/src/images/michael.jpg
new file mode 100644
index 0000000..a42286d
--- /dev/null
+++ b/react-frontend/src/images/michael.jpg
Binary files differ