From 5a20c2ea11616b066666f6de8cd1ffff979e463c Mon Sep 17 00:00:00 2001 From: donBarbos Date: Sat, 4 May 2024 16:11:25 +0400 Subject: [PATCH] fix: update link to my website finally --- src/components/Footer/Footer.tsx | 2 +- src/pages/contact/index.tsx | 2 +- tests/pages/contact.test.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Footer/Footer.tsx b/src/components/Footer/Footer.tsx index 399fb8c..016e308 100644 --- a/src/components/Footer/Footer.tsx +++ b/src/components/Footer/Footer.tsx @@ -6,7 +6,7 @@ export const Footer = () => { return ( ) } diff --git a/src/pages/contact/index.tsx b/src/pages/contact/index.tsx index 2c7b778..5ccb762 100644 --- a/src/pages/contact/index.tsx +++ b/src/pages/contact/index.tsx @@ -43,7 +43,7 @@ const Contact: NextPage = () => { email: donbarbos@proton.me
  • - site: donbarbos.vercel.app + site: donbarbos.me
  • github: @donbarbos diff --git a/tests/pages/contact.test.tsx b/tests/pages/contact.test.tsx index c2f82ec..3e7585e 100644 --- a/tests/pages/contact.test.tsx +++ b/tests/pages/contact.test.tsx @@ -42,7 +42,7 @@ describe('Contact', () => { it('should render the correct contact information', () => { render() const email = screen.getByText(/donbarbos@proton.me/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)