chore(Hero): Added EMA'IT Logo
Some checks failed
Docker Build and Push for Main Branch / docker (push) Failing after 13m15s

This commit is contained in:
l-nmch
2026-04-11 20:32:43 +02:00
parent 30a8bd8e2d
commit 275f700a67
2 changed files with 6 additions and 0 deletions

BIN
public/img/emait-logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

@@ -3,6 +3,7 @@ import Link from "next/link";
import { Container } from "@/components/Container";
import heroImg from "../../public/img/nature.png";
import usocomeLogo from "../../public/img/usocome-logo.png";
import emaitLogo from "../../public/img/emait-logo.png"
export const Hero = () => {
return (
@@ -54,6 +55,11 @@ export const Hero = () => {
<Image className="object-contain h-48 w-96" src={usocomeLogo} alt="Usocome Logo"></Image>
</Link>
</div>
<div className="pt-2 text-gray-400 dark:text-gray-400">
<Link href={"https://emait.fr/"}>
<Image className="object-contain h-48 w-96" src={emaitLogo} alt="Emait Logo"></Image>
</Link>
</div>
</div>
</div>
</Container>