From 50fbc95ba900ff9208f004d4fa207cf1095f3476 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Veikko=20Lintuj=C3=A4rvi?= Date: Thu, 16 May 2024 22:45:09 +0300 Subject: [PATCH] Add archive link --- pages/performers.tsx | 8 ++++++++ styles/Performers.module.scss | 13 +++++++++++++ 2 files changed, 21 insertions(+) diff --git a/pages/performers.tsx b/pages/performers.tsx index 65c2c57..a7833a1 100644 --- a/pages/performers.tsx +++ b/pages/performers.tsx @@ -6,6 +6,8 @@ import Performer from '../types/Performer'; import { BiChevronDown, BiChevronLeft } from 'react-icons/bi'; import PerformersData from '../data/performers/2024'; import { CSSTransition } from 'react-transition-group'; +import Link from 'next/link'; +import { FiExternalLink } from 'react-icons/fi'; interface PerformerCard extends Performer { id: number; @@ -88,6 +90,12 @@ const Performers = () => { ) : ( Lisätietoja tulossa myöhemmin... )} + + + Aiempien vuosien esiintyjiä + + + ); }; diff --git a/styles/Performers.module.scss b/styles/Performers.module.scss index 899321b..96813d0 100644 --- a/styles/Performers.module.scss +++ b/styles/Performers.module.scss @@ -62,7 +62,20 @@ margin-top: 0; } } + .performerTextContainer { margin-left: -0.5rem; } } + +.archiveLink { + margin-top: 1rem; +} + +.archiveLinkText { + font-size: 2.5rem; + margin-right: 1rem; + color: #2f273e; + text-decoration: none; + font-weight: bold; +} \ No newline at end of file