-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
7 changed files
with
403 additions
and
270 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,26 +1,52 @@ | ||
import * as resume from '../../resume.json'; | ||
import { forwardRef } from 'react'; | ||
import * as resume from "../../resume.json"; | ||
import { forwardRef } from "react"; | ||
|
||
const Contact = forwardRef<HTMLElement>((props, ref) => { | ||
return ( | ||
<section id="contact" ref={ref} className="min-h-screen flex flex-col items-center justify-center"> | ||
<h2 className="text-6xl font-bold text-center text-white mb-20">Get in Touch</h2> | ||
<div className="flex gap-10"> | ||
<a href={resume.contact.linkedin} target="_blank" rel="noopener noreferrer" className="flex items-center text-gray-600 hover:text-blue-500 transition-colors"> | ||
<img src="/linkedin.svg" alt="LinkedIn" className="w-20 h-20" /> | ||
</a> | ||
<a href={resume.contact.github} target="_blank" rel="noopener noreferrer" className="flex items-center text-gray-600 hover:text-blue-500 transition-colors"> | ||
<img src="/github.svg" alt="Github" className="w-20 h-20" /> | ||
</a> | ||
<a href={resume.contact.twitter} target="_blank" rel="noopener noreferrer" className="flex items-center text-gray-600 hover:text-blue-500 transition-colors"> | ||
<img src="/x.svg" alt="X" className="w-20 h-20" /> | ||
</a> | ||
<a href="/Jaryd_Diamond_Resume.pdf" target="_blank" rel="noopener noreferrer" className="flex items-center text-gray-600 hover:text-blue-500 transition-colors"> | ||
<img src="/resume.svg" alt="Resume" className="w-20 h-20" /> | ||
</a> | ||
</div> | ||
</section> | ||
) | ||
const Contact = forwardRef<HTMLElement>((_, ref) => { | ||
return ( | ||
<section | ||
id="contact" | ||
ref={ref} | ||
className="min-h-screen flex flex-col items-center justify-center" | ||
> | ||
<h2 className="text-6xl font-bold text-center text-white mb-20"> | ||
Get in Touch | ||
</h2> | ||
<div className="flex gap-10"> | ||
<a | ||
href={resume.contact.linkedin} | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
className="flex items-center text-gray-600 hover:text-blue-500 transition-colors" | ||
> | ||
<img src="/linkedin.svg" alt="LinkedIn" className="w-20 h-20" /> | ||
</a> | ||
<a | ||
href={resume.contact.github} | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
className="flex items-center text-gray-600 hover:text-blue-500 transition-colors" | ||
> | ||
<img src="/github.svg" alt="Github" className="w-20 h-20" /> | ||
</a> | ||
<a | ||
href={resume.contact.twitter} | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
className="flex items-center text-gray-600 hover:text-blue-500 transition-colors" | ||
> | ||
<img src="/x.svg" alt="X" className="w-20 h-20" /> | ||
</a> | ||
<a | ||
href="/Jaryd_Diamond_Resume.pdf" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
className="flex items-center text-gray-600 hover:text-blue-500 transition-colors" | ||
> | ||
<img src="/resume.svg" alt="Resume" className="w-20 h-20" /> | ||
</a> | ||
</div> | ||
</section> | ||
); | ||
}); | ||
|
||
export default Contact; | ||
export default Contact; |
Oops, something went wrong.