From 1fcd9f9dd1005d03c1d53ddcf9d2da90ffe66736 Mon Sep 17 00:00:00 2001 From: Aarni Halinen Date: Sat, 8 May 2021 00:29:26 +0300 Subject: [PATCH] add some links --- src/components/Footer/FooterContent.tsx | 2 + src/components/Navigation.tsx | 15 +- src/components/NavigationMobile.tsx | 22 +- src/views/HonoraryPage/HonoraryPageView.tsx | 1052 ++++++++++--------- 4 files changed, 542 insertions(+), 549 deletions(-) diff --git a/src/components/Footer/FooterContent.tsx b/src/components/Footer/FooterContent.tsx index 9ed71b4..5afc07a 100644 --- a/src/components/Footer/FooterContent.tsx +++ b/src/components/Footer/FooterContent.tsx @@ -86,6 +86,8 @@ const FooterContent: React.FC = () => ( Jäseneksi Palaute Dokumenttiarkisto + Kuvagalleria + Logot ja grafiikka diff --git a/src/components/Navigation.tsx b/src/components/Navigation.tsx index 9271506..770d717 100644 --- a/src/components/Navigation.tsx +++ b/src/components/Navigation.tsx @@ -6,20 +6,21 @@ import Icon, { IconType } from "./Icon"; import NavbarDropdownLink from "./NavbarDropdownLink"; import NavbarChildLink from "./NavbarChildLink"; -const renderNavigationDesktopItems = () => ( +export const renderNavigationItems = (mobile = false) => ( <> - + Toiminta Fuksi Kunnianosoitukset Dokumenttiarkisto + Kuvagalleria - - - + + + {/* Simo Höglund */} - + ); @@ -104,7 +105,7 @@ interface NavigationProps { } const Navigation: React.FC = ({ onMobileMenuOpen }) => { - const desktopItems = renderNavigationDesktopItems(); + const desktopItems = renderNavigationItems(); return (