first commit

This commit is contained in:
2025-09-02 19:50:17 -04:00
parent fe4a89f81e
commit 685c92a82f
37 changed files with 1460 additions and 301 deletions
+31
View File
@@ -0,0 +1,31 @@
import Image from "next/image";
import "./Header.css";
import Link from "next/link";
function Header() {
return (
<header>
<Link href="https://www.unam.mx/" className="center">
<Image
className="logo"
src="/logo_fes.png"
alt="Logo FES"
width={200}
height={50}
/>
</Link>
<div className="yellowPart"></div>
<div className="cedetecContainer">
<Image
src="/cedetec.jpg"
alt="Image of CEDETEC"
width={300}
height={71}
/>
</div>
</header>
);
}
export default Header;
//IO