first commit

This commit is contained in:
CHIEFSOFT\ameye
2023-10-14 22:02:57 -04:00
commit 5f95d857d4
783 changed files with 112323 additions and 0 deletions
@@ -0,0 +1,42 @@
import React from "react";
import Grid from "@mui/material/Grid";
import Card from "@mui/material/Card";
import Typography from "@mui/material/Typography";
import ImpressionShare from "./ImpressionShare";
const Profile = () => {
return (
<>
<Card
sx={{
boxShadow: "none",
borderRadius: "10px",
p: "25px 20px",
mb: "15px",
}}
>
<Grid container alignItems="center" rowSpacing={1} columnSpacing={{ xs: 1, sm: 2, md: 2 }}>
<Grid item xs={6} sm={8}>
<img
src="/images/member10.png"
alt="Profile image"
style={{ width: "60px", height: "60px", marginBottom: "20px" }}
/>
<Typography variant="h3" fontSize={16} fontWeight="500" mb="5px">
Andrew Burns
</Typography>
<Typography variant="p">Programmer</Typography>
</Grid>
<Grid item xs={6} sm={4}>
<ImpressionShare />
</Grid>
</Grid>
</Card>
</>
);
};
export default Profile;