Disable unused bits; media queries

This commit is contained in:
Aaron Yarborough 2024-03-12 15:23:08 +00:00
parent 1530d55858
commit b99c87201c
6 changed files with 11 additions and 5 deletions

View file

@ -8,17 +8,17 @@ function CV ({ competencies, education, certifications, languages, experience })
<div> <div>
<h2>Core competencies</h2> <h2>Core competencies</h2>
<ul> <ul>
{competencies.sort().map(c => <li key={c}>{c}</li>)} {competencies.sort().map((c, i) => <li key={i}>{c}</li>)}
</ul> </ul>
<h2>Certifications</h2> <h2>Certifications</h2>
<ul> <ul>
{certifications.sort().map(c => <li key={c}>{c}</li>)} {certifications.sort().map((c, i) => <li key={i}>{c}</li>)}
</ul> </ul>
<h2>Languages</h2> <h2>Languages</h2>
<ul> <ul>
{languages.sort().map(c => <li key={c}>{c.name} - {c.proficiency}</li>)} {languages.sort().map((c, i) => <li key={i}>{c.name} - {c.proficiency}</li>)}
</ul> </ul>
<h2>Education history</h2> <h2>Education history</h2>

View file

@ -27,3 +27,9 @@
.cv ul li:not(:last-child) { .cv ul li:not(:last-child) {
margin-bottom: 10px; margin-bottom: 10px;
} }
@media (max-width: 768px) {
.cv {
flex-direction: column;
}
}

View file

@ -8,7 +8,7 @@ function Header () {
<header className={styles.header}> <header className={styles.header}>
<nav> <nav>
<Link href='/'>Home</Link> <Link href='/'>Home</Link>
<Link href='/writing'>Writing</Link> {/* <Link href='/writing'>Writing</Link> */}
<Link href='/cv'>CV</Link> <Link href='/cv'>CV</Link>
</nav> </nav>
</header> </header>

View file

@ -15,7 +15,7 @@ function CVPage ({
}) { }) {
return ( return (
<DefaultLayout> <DefaultLayout>
<NextSeo title='CV'/> <NextSeo title='CV' />
<section> <section>
<h1>CV</h1> <h1>CV</h1>
</section> </section>