17 lines
490 B
TypeScript
17 lines
490 B
TypeScript
import Image from "next/image";
|
|
import unam from "../../public/images/Logo-UNAM.png";
|
|
import fes from "../../public/images/logo_acatlan.png";
|
|
import header from "./Header.module.css";
|
|
|
|
export default function Header() {
|
|
return (
|
|
<header className={header.header}>
|
|
<Image src={unam} alt="Logo de la UNAM" height={60} width={190} />
|
|
<Image src={fes} alt="Logo de la UNAM" height={60} width={190} />
|
|
<div className={header.yellowPart}></div>
|
|
</header>
|
|
);
|
|
}
|
|
|
|
//IO
|