Skip to content

Commit

Permalink
Added funders to Footer
Browse files Browse the repository at this point in the history
Signed-off-by: JanProgrammierung <[email protected]>
  • Loading branch information
JanProgrammierung committed Nov 8, 2024
1 parent 4c49cd1 commit 72fea62
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 1 deletion.
2 changes: 1 addition & 1 deletion next-app/next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ const nextConfig = {
]
},
output: 'standalone',
};
};

export default nextConfig;
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed next-app/public/Partner logo/kaw_sv_300x300.png
Binary file not shown.
27 changes: 27 additions & 0 deletions next-app/src/components/FooterComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import { ReactElement } from "react";
import { ILink, ISVG } from "@/interfaces/types";
import Link from "next/link";
import Image from "next/image";
import { LINK_CLASSES } from "@/constants";

export default function FooterComponent(): ReactElement {
Expand Down Expand Up @@ -95,6 +96,32 @@ export default function FooterComponent(): ReactElement {
))}
</div>
</nav>
<div className="flex justify-start items-center gap-4 flex-wrap md:flex-nowrap">
<div className="w-20 md:w-auto">
<Image
src="/Partner logo/KI_digital_logotyp_negativ_vert.png"
alt="Karolinska Institutet logo"
width={110}
height={131}
/>
</div>
<div className="w-16 md:w-auto">
<Image
src="/Partner logo/SciLifeLab_symbol_NEG.png"
alt="SciLifeLab Logo"
width={70}
height={66}
/>
</div>
<div className="w-20 md:w-auto">
<Image
src="/Partner logo/KAW Logotype Medium 1.png"
alt="Knut and Alice Wallenberg Foundation logo"
width={151}
height={87}
/>
</div>
</div>
</footer>
<div className="bg-primary text-white flex flex-col items-center pt-12 pb-6 text-xs">
<p>Website code is available on Github:</p>
Expand Down

0 comments on commit 72fea62

Please sign in to comment.