fix retake/retake.fr#2 #3
@@ -13,23 +13,21 @@ jobs:
|
|||||||
docker:
|
docker:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- name: Log in to Phorge registry
|
||||||
|
uses: docker/login-action@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
|
|
||||||
with:
|
with:
|
||||||
registry: git.phorge.fr
|
registry: git.phorge.fr
|
||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
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
|
- name: Build and push
|
||||||
uses: docker/build-push-action@v6
|
uses: docker/build-push-action@v7
|
||||||
with:
|
with:
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64,linux/arm64
|
||||||
push: false
|
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 { Container } from "@/components/Container";
|
||||||
import heroImg from "../../public/img/nature.png";
|
import heroImg from "../../public/img/nature.png";
|
||||||
import usocomeLogo from "../../public/img/usocome-logo.png";
|
import usocomeLogo from "../../public/img/usocome-logo.png";
|
||||||
|
import emaitLogo from "../../public/img/emait-logo.png"
|
||||||
|
|
||||||
export const Hero = () => {
|
export const Hero = () => {
|
||||||
return (
|
return (
|
||||||
@@ -54,6 +55,11 @@ export const Hero = () => {
|
|||||||
<Image className="object-contain h-48 w-96" src={usocomeLogo} alt="Usocome Logo"></Image>
|
<Image className="object-contain h-48 w-96" src={usocomeLogo} alt="Usocome Logo"></Image>
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</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>
|
||||||
</div>
|
</div>
|
||||||
</Container>
|
</Container>
|
||||||
|
|||||||
Reference in New Issue
Block a user