Skip to content

Commit

Permalink
fix: update link to my website finally
Browse files Browse the repository at this point in the history
  • Loading branch information
donBarbos committed May 4, 2024
1 parent ba22573 commit 5a20c2e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const Footer = () => {
return (
<footer className={styles.footer} role="contentinfo">
© {new Date().getFullYear()}&nbsp;
<Link href="https://www.dontkillkenny.com">donBarbos</Link>
<Link href="https://donbarbos.me">donBarbos</Link>
</footer>
)
}
2 changes: 1 addition & 1 deletion src/pages/contact/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const Contact: NextPage = () => {
email: <Link href="mailto:[email protected]">[email protected]</Link>
</li>
<li>
site: <Link href="https://donbarbos.vercel.app">donbarbos.vercel.app</Link>
site: <Link href="https://donbarbos.me">donbarbos.me</Link>
</li>
<li>
github: <Link href="https://github.com/donBarbos">@donbarbos</Link>
Expand Down
2 changes: 1 addition & 1 deletion tests/pages/contact.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ describe('Contact', () => {
it('should render the correct contact information', () => {
render(<Contact />)
const email = screen.getByText(/[email protected]/i)
const site = screen.getByText(/donbarbos.vercel.app/i)
const site = screen.getByText(/donbarbos.me/i)
const github = screen.getAllByText(/@donBarbos/i)[0]
const telegram = screen.getAllByText(/@donBarbos/i)[1]
const sourceCodeLink = screen.getByText(/this link/i)
Expand Down

0 comments on commit 5a20c2e

Please sign in to comment.