From e13e630cd6e4fc0b1ff92098a28a770794c7bb9a Mon Sep 17 00:00:00 2001 From: gabrhr <73925454+gabrhr@users.noreply.github.com> Date: Wed, 20 Apr 2022 10:19:29 -0500 Subject: =?UTF-8?q?A=C3=B1adir=20plantilla?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Base para front --- front/odiparpack/app/components/Profile/About.js | 243 +++++++++++++++++++++++ 1 file changed, 243 insertions(+) create mode 100644 front/odiparpack/app/components/Profile/About.js (limited to 'front/odiparpack/app/components/Profile/About.js') diff --git a/front/odiparpack/app/components/Profile/About.js b/front/odiparpack/app/components/Profile/About.js new file mode 100644 index 0000000..9872a47 --- /dev/null +++ b/front/odiparpack/app/components/Profile/About.js @@ -0,0 +1,243 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import classNames from 'classnames'; +import { withStyles } from '@material-ui/core/styles'; +import LocalPhone from '@material-ui/icons/LocalPhone'; +import DateRange from '@material-ui/icons/DateRange'; +import LocationOn from '@material-ui/icons/LocationOn'; +import InfoIcon from '@material-ui/icons/Info'; +import Check from '@material-ui/icons/Check'; +import AcUnit from '@material-ui/icons/AcUnit'; +import Adb from '@material-ui/icons/Adb'; +import AllInclusive from '@material-ui/icons/AllInclusive'; +import AssistantPhoto from '@material-ui/icons/AssistantPhoto'; +import imgData from 'ba-api/imgData'; +import Type from 'ba-styles/Typography.scss'; +import { + Grid, + Paper, + Typography, + List, + ListItem, + ListItemText, + ListItemAvatar, + Avatar, + Button, + LinearProgress, + Divider, + Chip, + GridList, + GridListTile, + GridListTileBar, + IconButton, +} from '@material-ui/core'; +import Timeline from '../SocialMedia/Timeline'; +import PapperBlock from '../PapperBlock/PapperBlock'; +import styles from './profile-jss'; + + +class About extends React.Component { + render() { + const { classes, data } = this.props; + return ( + + +
+ +
+
+ + {/* Profile Progress */} +
+ + + Profile Strength: + Intermediate + + + + + + )} + label="60% Progress" + className={classes.chip} + color="primary" + /> + + + +
+ {/* ----------------------------------------------------------------------*/} + {/* About Me */} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {/* ----------------------------------------------------------------------*/} + {/* My Albums */} + +
+ + { + imgData.map((tile, index) => { + if (index >= 4) { + return false; + } + return ( + + {tile.title} + +by: + {tile.author} + + )} + actionIcon={( + + + + )} + /> + + ); + }) + } + +
+ + + + +
+ {/* ----------------------------------------------------------------------*/} + {/* My Connection Me */} + + + + + H + + + + + + J + + + + + + V + + + + + + H + + + + + + + + + + {/* ----------------------------------------------------------------------*/} + {/* My Interests */} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {/* ----------------------------------------------------------------------*/} +
+
+ ); + } +} + +About.propTypes = { + classes: PropTypes.object.isRequired, + data: PropTypes.object.isRequired +}; + +export default withStyles(styles)(About); -- cgit v1.2.3