From fb4b38040723e41c4c2902a7445c27f992215bb0 Mon Sep 17 00:00:00 2001 From: Felix Hamme Date: Sat, 11 May 2019 17:51:44 +0200 Subject: [PATCH] Refactor Footer and update copyright year --- js/components/Footer.js | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/js/components/Footer.js b/js/components/Footer.js index 9d39ad7..54bd2d1 100644 --- a/js/components/Footer.js +++ b/js/components/Footer.js @@ -1,19 +1,30 @@ - - export function Footer() { return ( ); } + +function Copyright() { + return © 2019 turnie.re; +} + +function Privacy() { + return Datenschutzerklärung; +} + +function Imprint() { + return Impressum; +} + +function MoveToTop() { + return zurück nach oben; +}