Add Archive link back

This commit is contained in:
2026-06-15 23:16:41 +03:00
parent 38cb38f53f
commit 62a87a1169
2 changed files with 14 additions and 0 deletions

View File

@@ -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 = () => {
{/* <Workshops /> */}
{/* <Info /> */}
{/* <Archive /> */}
<Link to="/archive">
<span className={styles.archiveLinkText}>Aiempien vuosien esiintyjiä</span>
<FiExternalLink fontSize={20} />
</Link>
</div>
);
};

View File

@@ -15,3 +15,11 @@
}
}
}
.archiveLinkText {
font-size: 2.5rem;
margin-right: 1rem;
color: #2f273e;
text-decoration: none;
font-weight: bold;
}