16 lines
608 B
JavaScript
16 lines
608 B
JavaScript
import Image from "next/image";
|
|
import LogoUnam from "./../../public/Logo-UNAM.png";
|
|
import LogoFes from "./../../public/logo_fesa.png";
|
|
import styles from "../../styles/default.module.css";
|
|
import { Container, Row, Col,Stack } from "react-bootstrap";
|
|
function Header() {
|
|
return (
|
|
<div className={`${styles.azulUnam}`}>
|
|
<Stack direction="horizontal" gap={3}>
|
|
<div className=""><Image src={LogoUnam} width="183" height="55"/></div>
|
|
<div className="ms-auto"><Image src={LogoFes} width="220" height="52"/></div>
|
|
</Stack>
|
|
</div>
|
|
)
|
|
}
|
|
export default Header; |