Skip to content

Commit

Permalink
Merge pull request #83 from ScilifelabDataCentre/add-images-footer
Browse files Browse the repository at this point in the history
Added funders to Footer
  • Loading branch information
JanProgrammierung authored Nov 11, 2024
2 parents 03964c8 + 72fea62 commit ff7735a
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 ff7735a

Please sign in to comment.