Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 3086 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 3086 Rev 3088
Línea 1... Línea 1...
1
import React from 'react'
1
import React from 'react'
-
 
2
import { Typography } from '@mui/material'
Línea 2... Línea 3...
2
 
3
 
Línea 3... Línea 4...
3
import Widget from '@components/UI/Widget'
4
import Widget from '@components/UI/Widget'
4
 
5
 
Línea 15... Línea 16...
15
  return (
16
  return (
16
    <Widget>
17
    <Widget>
17
      <Widget.Header title='Sobre el cliente' />
18
      <Widget.Header title='Sobre el cliente' />
Línea 18... Línea 19...
18
 
19
 
19
      <Widget.Body>
-
 
20
        <div className='info'>
20
      <Widget.Body>
21
          <h4>{companyIndustry}</h4>
21
        <Typography variant='h4'>{companyIndustry}</Typography>
22
          <p>{companySize} empleados</p>
22
        <Typography>{companySize}</Typography>
23
        </div>
-
 
24
        {companyAddress && (
-
 
25
          <div className='info'>
23
 
26
            <p>{companyAddress}</p>
-
 
27
          </div>
24
        {companyAddress && <Typography>{companyAddress}</Typography>}
28
        )}
25
 
-
 
26
        {companyWebsite && (
29
        {companyWebsite && (
27
          <>
30
          <div className='info'>
28
            <Typography variant='h4'>
-
 
29
              URL del sitio web de la empresa
31
            <h4>URL del sitio web de la empresa</h4>
30
            </Typography>
32
            <a
31
            <a
33
              href={`http://${companyWebsite}`}
32
              href={`http://${companyWebsite}`}
34
              target='_blank'
33
              target='_blank'
35
              rel='noreferrer'
34
              rel='noreferrer'
36
            >
35
            >
37
              {companyWebsite}
36
              {companyWebsite}
38
            </a>
37
            </a>
39
          </div>
38
          </>
-
 
39
        )}
40
        )}
40
 
41
        {companyFoundationYear && (
41
        {companyFoundationYear && (
42
          <div className='info'>
42
          <>
43
            <h4>Fundada</h4>
43
            <Typography variant='h4'>Fundada</Typography>
44
            <p>{companyFoundationYear}</p>
44
            <Typography>{companyFoundationYear}</Typography>
45
          </div>
45
          </>
46
        )}
46
        )}
47
      </Widget.Body>
47
      </Widget.Body>
48
    </Widget>
48
    </Widget>
49
  )
49
  )