Skip to content

Commit

Permalink
Merge pull request #579 from frontendnetwork/staging
Browse files Browse the repository at this point in the history
Veganuary
  • Loading branch information
philipbrembeck authored Dec 31, 2023
2 parents 5a2c7d6 + 0c43ff2 commit 64a968c
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:

steps:
- name: SSH into the server and run Docker Compose
uses: appleboy/ssh-action@v1.0.0
uses: appleboy/ssh-action@v1.0.1
with:
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USERNAME }}
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:

steps:
- name: SSH into the server and run Docker Compose
uses: appleboy/ssh-action@v1.0.0
uses: appleboy/ssh-action@v1.0.1
with:
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USERNAME }}
Expand Down
6 changes: 3 additions & 3 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
MIT License

Copyright (c) 2023 Philip Brembeck
Copyright (c) 2023 FrontEndNet.work
Copyright (c) 2023 VeganCheck.me Contributors
Copyright (c) 2024 Philip Brembeck
Copyright (c) 2024 FrontEndNet.work
Copyright (c) 2024 VeganCheck.me Contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
12 changes: 12 additions & 0 deletions src/components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { useTranslations } from "next-intl";

export default function Footer() {
const t = useTranslations("Footer");
const d = new Date().getMonth();
return (
<>
<footer>
Expand Down Expand Up @@ -39,6 +40,16 @@ export default function Footer() {
}),
}}
/>
{d === 0 ? (
<a href="https://vegc.net/veganuary">
<Image
src="../img/veganuary.svg"
alt="Go to Veganuary"
className="labels"
width={48}
height={48}
/>
</a>) : (
<a href="https://vegancheck.me">
<Image
src="../img/VeganCheck_text.svg"
Expand All @@ -48,6 +59,7 @@ export default function Footer() {
height={48}
/>
</a>
)}
<a href="https://github.com/frontendnetwork/vegancheck.me">
<Image
src="../img/opensource.svg"
Expand Down

0 comments on commit 64a968c

Please sign in to comment.