Upgrade to latest nodejs and completely rework website
This commit is contained in:
parent
07270c3aa6
commit
0372c4cd77
38 changed files with 4135 additions and 6933 deletions
src/app/components
31
src/app/components/Contact.tsx
Normal file
31
src/app/components/Contact.tsx
Normal file
|
@ -0,0 +1,31 @@
|
|||
import {GithubIcon, InfoIcon, LinkedinIcon, MailIcon} from "lucide-react";
|
||||
|
||||
export const Contact = () => {
|
||||
return (
|
||||
<>
|
||||
<section className="leading-relaxed">
|
||||
<p className="flex justify-center">
|
||||
<a
|
||||
type="button"
|
||||
href="mailto:sales@romanjaros.dev"
|
||||
className="flex gap-2 focus:outline-none text-white bg-yellow-400 hover:bg-yellow-500 focus:ring-4 focus:ring-yellow-300 font-medium rounded-lg px-5 py-2.5 me-2 mb-2 dark:text-slate-600 dark:focus:ring-yellow-900">
|
||||
<MailIcon/> Send e-mail
|
||||
</a>
|
||||
</p>
|
||||
<p className="flex justify-center gap-4 my-8">
|
||||
<a href="mailto:info@romanjaros.dev"><InfoIcon/></a>
|
||||
<a
|
||||
target="_blank"
|
||||
href="http://linkedin.com/in/roman-jaroš-16a687139"
|
||||
rel="noreferrer"
|
||||
>
|
||||
<LinkedinIcon/>
|
||||
</a>
|
||||
<a target="_blank" href="https://forgejo.romanjaros.dev" rel="noreferrer">
|
||||
<GithubIcon/>
|
||||
</a>
|
||||
</p>
|
||||
</section>
|
||||
</>
|
||||
);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue