Compare commits
3 Commits
30a8bd8e2d
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 257224264d | |||
|
|
9cd461fcf5 | ||
|
|
275f700a67 |
@@ -13,23 +13,21 @@ jobs:
|
||||
docker:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v3
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
|
||||
- name: Log in to Docker Hub
|
||||
uses: docker/login-action@v2
|
||||
- name: Log in to Phorge registry
|
||||
uses: docker/login-action@v4
|
||||
with:
|
||||
registry: git.phorge.fr
|
||||
username: ${{ secrets.DOCKER_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v4
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v4
|
||||
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v6
|
||||
uses: docker/build-push-action@v7
|
||||
with:
|
||||
platforms: linux/amd64,linux/arm64
|
||||
push: false
|
||||
|
||||
BIN
public/img/emait-logo.png
Normal file
BIN
public/img/emait-logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 6.7 KiB |
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user