Skip to content

Commit 032b7ee

Browse files
committed
Add tabIndex's to a few sections to make it less jarring
1 parent 7c08740 commit 032b7ee

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

src/components/modules/AboutMe/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ const AboutMe = () => {
8383
return (
8484
<Container data-testid="about-me">
8585
<MaxWidth>
86-
<H2>About Me</H2>
86+
<H2 tabIndex={0}>About Me</H2>
8787
<Column>
8888
<TextSection />
8989
<SquareRatio max="500px">

src/components/modules/App/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import SupremeBlock from '../SupremeBlock'
99
import AboutMe from '../AboutMe'
1010
import PortfolioBlock from '../PortfolioBlock'
1111
import Footer from '../Footer'
12-
import TechnologySection from '../TechnologySection'
1312

1413
const COOKIE = 'acceptedCookies=true'
1514

src/components/modules/PortfolioBlock/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const Container = styled.section`
4444
const PortfolioBlock = () => (
4545
<Container data-testid="portfolio-module">
4646
<MaxWidth>
47-
<H2>Stuff I&apos;ve done</H2>
47+
<H2 tabIndex={0}>Stuff I&apos;ve done</H2>
4848
<List>
4949
{data.map((item, index) => (
5050
<PortfolioItem

0 commit comments

Comments
 (0)