aboutsummaryrefslogtreecommitdiff
path: root/react-frontend/src/App.js
diff options
context:
space:
mode:
Diffstat (limited to 'react-frontend/src/App.js')
-rw-r--r--react-frontend/src/App.js9
1 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>