2024-07-15 18:40:28 -06:00
|
|
|
import React from "react";
|
|
|
|
|
import "./style.css";
|
2024-06-13 20:10:44 -06:00
|
|
|
|
|
|
|
|
const Header = () => {
|
|
|
|
|
return (
|
|
|
|
|
<header className="header">
|
2024-07-15 18:40:28 -06:00
|
|
|
<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"
|
|
|
|
|
/>
|
2024-06-13 20:10:44 -06:00
|
|
|
</header>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
2024-07-15 18:40:28 -06:00
|
|
|
export default Header;
|