Fix links on home page (past events/news) #174

Merged
a258wang merged 1 commits from amy-fix-home-page-links into main 2021-08-23 22:57:58 -04:00
1 changed files with 3 additions and 12 deletions

View File

@ -51,10 +51,7 @@ export default function Home(props: Props) {
<section className={styles.events}> <section className={styles.events}>
<h1 className={styles.cardsHeading}>Upcoming Events</h1> <h1 className={styles.cardsHeading}>Upcoming Events</h1>
<p className={styles.cardsDescription}> <p className={styles.cardsDescription}>
See past events{" "} See past events <Link href="/events/archive">here</Link>
<Link href="/events/archive">
<a title="Events Archive">here</a>
</Link>
</p> </p>
<hr className={styles.cardsDividingLine} /> <hr className={styles.cardsDividingLine} />
{props.events.length === 0 ? ( {props.events.length === 0 ? (
@ -75,10 +72,7 @@ export default function Home(props: Props) {
</div> </div>
{props.moreEvents ? ( {props.moreEvents ? (
<p> <p>
See more upcoming events{" "} See more upcoming events <Link href="/events">here</Link>
<Link href="/events">
<a title="Events">here</a>
</Link>
</p> </p>
) : null} ) : null}
</section> </section>
@ -86,10 +80,7 @@ export default function Home(props: Props) {
<h1 className={styles.cardsHeading}>News</h1> <h1 className={styles.cardsHeading}>News</h1>
<p className={styles.cardsDescription}> <p className={styles.cardsDescription}>
Updates from our execs! <br /> Updates from our execs! <br />
See past news{" "} See past news <Link href="/news/archive">here</Link>
<Link href="/news/archive">
<a title="News Archive">here</a>
</Link>
</p> </p>
<hr className={styles.cardsDividingLine} /> <hr className={styles.cardsDividingLine} />
{ {