-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f6a492f
commit 691c77a
Showing
4 changed files
with
39 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import { FaLocationArrow } from "react-icons/fa6"; | ||
import Link from "@docusaurus/Link"; | ||
import MagicButton from "../../../ui/MagicButton"; | ||
import React from "react"; | ||
|
||
const Touch = () => { | ||
return ( | ||
<div className="w-full pt-20 pb-10 p-4"> | ||
<div className="flex flex-col items-center"> | ||
<h1 className="heading text-5xl lg:text-6xl w-[90%]"> | ||
<span className="text-primaryColor">Ready</span> to take your team to | ||
the | ||
<span className="text-primaryColor"> next level</span>? | ||
</h1> | ||
<p className="text-white-200 md:mt-10 my-5 text-center md:w-[70%]"> | ||
I'm eager to bring my skills and passion for software development | ||
to a new role. Let’s connect and explore how I can contribute to your | ||
team’s success. I’m looking forward to hearing from you! | ||
</p> | ||
|
||
<Link to="mailto:[email protected]"> | ||
<MagicButton | ||
title="Let's get in touch" | ||
icon={<FaLocationArrow />} | ||
position="right" | ||
/> | ||
</Link> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Touch; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters