creacion de censo frontend

This commit is contained in:
jls846
2025-10-22 13:27:10 -06:00
parent 218a6ebde0
commit acfee154d0
20 changed files with 1133 additions and 329 deletions
+46
View File
@@ -0,0 +1,46 @@
"use client";
import Image from "next/image";
import header from "../app/styles/components/header.module.scss";
import Link from "next/link";
import BarNavigation from "./BarNavigation";
function Header() {
return (
<header className={header.header}>
<Link
href="https://www.unam.mx/"
target="_blank"
className={header.center}
style={{
display: "flex",
alignItems: "center",
}}
>
<Image
className={header.logo}
src="/logo_fes.png"
alt="Logo FES"
width={200}
height={50}
/>
</Link>
<div className={header.yellowPart}></div>
<div
style={{
display: "flex",
width: "100%",
marginLeft: "40px",
marginTop: "45px",
maxHeight: "50%",
alignItems: "end",
}}
className=""
>
<BarNavigation />
</div>
</header>
);
}
export default Header;
//IO