Add files via upload

Created About Page
This commit is contained in:
ksquaring 2021-02-27 12:58:39 -05:00 committed by GitHub
parent 13d446396a
commit 23130a0cb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,39 @@
import React from "react"; import React from "react";
import icon from "./assets/img/icon.png";
export default function About(props) { export default function About(props) {
return <div>About</div>; return (
<body left-margin="20%">
<table border="4px solid black" padding-left="20%">
<tr>
<th colspan="2">About Us!</th>
</tr>
<tr>
<td font-size="20px" width="200px" height="200px" >
Kedar
</td>
<td>
<img src = {icon} width="200px" height="200px" alt="image of team member"></img>
</td>
</tr>
<tr>
<td font-size="20px" width="200px" height="200px">
Radek
</td>
<td>
<img src = {icon} width="200px" height="200px" alt="image of team member"></img>
</td>
</tr>
</table>
</body>
);
} }