diff --git a/src/Client/src/components/ContactMe.tsx b/src/Client/src/components/ContactMe.tsx new file mode 100644 index 0000000..6aed821 --- /dev/null +++ b/src/Client/src/components/ContactMe.tsx @@ -0,0 +1,16 @@ +import { FaRegPaperPlane } from "react-icons/fa6"; +import Text from "../components/Text"; + +export default function ContactMe() { + return ( +
+ If you think I can help with your project... + + Get in touch + +
+ ); +} diff --git a/src/Client/src/pages/WorkPage.tsx b/src/Client/src/pages/WorkPage.tsx index 59cd6d6..ab65dbc 100644 --- a/src/Client/src/pages/WorkPage.tsx +++ b/src/Client/src/pages/WorkPage.tsx @@ -1,5 +1,4 @@ -import { FaRegPaperPlane } from "react-icons/fa6"; -import Text from "../components/Text"; +import ContactMe from "../components/ContactMe"; import Title from "../components/Title"; import WorkTimeline from "../components/WorkTimeline"; @@ -11,15 +10,7 @@ export default function WorkPage() { Freelance Software Engineer since 2018

-
- If you think I can help with your project... - - Get in touch - -
+ ); }