9 Commits

Author SHA1 Message Date
TheManus88 53df6eb3b9 merge 2024-10-14 17:50:23 -06:00
TheManus88 06fbb32734 order logos 2024-09-02 19:02:24 -06:00
TheManus88 ddc2e0466e merge into development 2024-08-30 16:33:55 -06:00
TheManus88 44d5c8c60c last changes 2024-08-30 16:32:51 -06:00
TheManus88 9d20a50674 changes for show images 2024-08-20 01:43:00 -06:00
TheManus88 7256791a25 add changes 2024-08-13 01:47:45 -06:00
TheManus88 2b86b0e02c Merge remote-tracking branch 'origin/Sam' into development 2024-08-13 01:46:20 -06:00
TheManus88 415075a959 port updated 2024-08-08 02:56:56 -06:00
TheManus88 a3a7fce6bf update spaces into profesor description 2024-07-30 22:32:48 -06:00
5 changed files with 14 additions and 9 deletions
-1
View File
@@ -1,2 +1 @@
REACT_APP_API_URL=https://venus.acatlan.unam.mx/directorio_test
REACT_APP_PORT=3001
+6
View File
@@ -0,0 +1,6 @@
<component name="InspectionProjectProfileManager">
<profile version="1.0">
<option name="myName" value="Project Default" />
<inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
</profile>
</component>
+1 -1
View File
@@ -17,7 +17,7 @@
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "set PORT=3001 && react-scripts start",
"start": "set PORT=3226 && react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
+2 -2
View File
@@ -7,11 +7,11 @@ const Header = () => {
return (
<header className="header">
<a href="https://www.unam.mx/">
<img className="logo" alt="Logo 1" src={logo1} />
<img className="logo" alt="Logo 1" src={logo2} />
</a>
<a href="https://www.acatlan.unam.mx/">
<img className="logo" alt="Logo 2" src={logo2} />
<img className="logo" alt="Logo 2" src={logo1} />
</a>
</header>
);
@@ -123,23 +123,23 @@ const PerfilProfesor = () => {
</div>
<ul>
<li>
<strong>Ubicación:</strong>
<strong>Ubicación: </strong>
{profesor.ubicacion ? profesor.ubicacion : "NO ubicado"}
</li>
<li>
<strong>Correo:</strong>
<strong>Correo: </strong>
{profesor.correo_pcp ? profesor.correo_pcp : "No ubicado"}
</li>
<li>
<strong>Teléfono de oficina:</strong>
<strong>Teléfono de oficina: </strong>
{profesor.tel_oficina ? profesor.tel_oficina : "No ubicado"}
</li>
<li>
<strong>Extensión:</strong>
<strong>Extensión: </strong>
{profesor.extension ? profesor.extension : "No ubicado"}
</li>
<li>
<strong>Edificio:</strong>
<strong>Edificio: </strong>
{edificioProfesor ? edificioProfesor.edificio : "No ubicado"}
</li>
</ul>