From 62a87a1169eb01a8bb47c0037ca6879edaa301da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Veikko=20Lintuj=C3=A4rvi?= Date: Mon, 15 Jun 2026 23:16:41 +0300 Subject: [PATCH] Add Archive link back --- src/pages/Index.tsx | 6 ++++++ styles/Index.module.scss | 8 ++++++++ 2 files changed, 14 insertions(+) diff --git a/src/pages/Index.tsx b/src/pages/Index.tsx index d05a716..9267e5e 100644 --- a/src/pages/Index.tsx +++ b/src/pages/Index.tsx @@ -3,6 +3,8 @@ import Program from './Program'; import styles from '../../styles/Index.module.scss'; import Lead from '../components/Lead'; import Collaboration from '../components/Collaboration'; +import { Link } from 'react-router-dom'; +import { FiExternalLink } from 'react-icons/all'; const Index = () => { return ( @@ -15,6 +17,10 @@ const Index = () => { {/* */} {/* */} {/* */} + + Aiempien vuosien esiintyjiƤ + + ); }; diff --git a/styles/Index.module.scss b/styles/Index.module.scss index b4c6e02..91cdd7f 100644 --- a/styles/Index.module.scss +++ b/styles/Index.module.scss @@ -15,3 +15,11 @@ } } } + +.archiveLinkText { + font-size: 2.5rem; + margin-right: 1rem; + color: #2f273e; + text-decoration: none; + font-weight: bold; +}