2024-06-13 20:10:44 -06:00
|
|
|
import React from 'react';
|
2024-06-19 15:37:58 -06:00
|
|
|
import './style.css';
|
2024-06-13 20:10:44 -06:00
|
|
|
|
|
|
|
|
const Header = () => {
|
|
|
|
|
return (
|
|
|
|
|
<header className="header">
|
|
|
|
|
<img src="https://posgrado.unam.mx/filosofia/wp-content/themes/posgrado/img/UNAM.png" alt="Logo 1" className="logo" />
|
|
|
|
|
<img src="https://www.acatlan.unam.mx/identidad-acatlan/img/Logotipos/Logotipo/logo-negroBis.png" alt="Logo 2" className="logo" />
|
|
|
|
|
</header>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default Header;
|