Reac front end for psicometric app

Home.jsx 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. import { Card } from '../Components/Card';
  2. import { Col, Row } from 'react-bootstrap'
  3. import React from 'react'
  4. import PersonOutlineIcon from '@mui/icons-material/PersonOutline';
  5. import VerifiedUserIcon from '@mui/icons-material/VerifiedUser';
  6. import ListAltIcon from '@mui/icons-material/ListAlt';
  7. import Actividades from '../Components/Actividades'
  8. import Candidatos from '../Components/Candidatos'
  9. export function Home() {
  10. return (
  11. <section >
  12. <div className="content-section">
  13. <div className="main">
  14. <h1>Bienvenido de nuevo Grupo DIT</h1>
  15. <div className="panel_options">
  16. <Row>
  17. <Col md="4">
  18. <Card title='CONTRASEÑAS' icon={VerifiedUserIcon}/>
  19. </Col>
  20. <Col md="4">
  21. <Card title='EXPEDIENTES' icon={PersonOutlineIcon}/>
  22. </Col>
  23. <Col md="4">
  24. <Card title='PUESTOS' icon={ListAltIcon}/>
  25. </Col>
  26. </Row>
  27. </div>
  28. <div className="historial_candidatos">
  29. <Row>
  30. <Col md="8">
  31. <Candidatos/>
  32. </Col>
  33. <Col md="4">
  34. <Actividades/>
  35. </Col>
  36. </Row>
  37. </div>
  38. </div>
  39. </div>
  40. </section>
  41. )
  42. }