Skip to content

Commit

Permalink
add contact section
Browse files Browse the repository at this point in the history
  • Loading branch information
David committed Apr 20, 2023
1 parent a0e8e6e commit b47c82c
Show file tree
Hide file tree
Showing 7 changed files with 473 additions and 420 deletions.
33 changes: 8 additions & 25 deletions app/components/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import photo from '../../public/David.jpg'
export default function About() {
return (
<section
className="mt-[20px] py-[40px] sm:py-[50px] md:py-[70px] lg:py-[120px] lg:mt-[50px] lg:max-w-[74%] xl:max-w-[68%] lg:mx-auto xl:mt-[100px] 2xl:max-w-[1000px]"
className="mt-[20px] py-[40px] sm:py-[50px] md:py-[70px] lg:mx-auto lg:mt-[50px] lg:max-w-[74%] lg:py-[120px] xl:mt-[100px] xl:max-w-[68%] 2xl:max-w-[1000px]"
id="about"
>
<div className="flex flex-col lg:flex-row lg:justify-between lg:gap-[5%]">
Expand All @@ -13,7 +13,7 @@ export default function About() {
<span className="mt-[3px] text-[19px] font-normal sm:mt-[4px] md:text-[20px] xl:text-[21px]">
01.
</span>
<h2 className="whitespace-nowrap mr-[10px] text-[26px] font-bold sm:mr-[10px] sm:text-[28px] lg:text-[30px] xl:text-[32px]">
<h2 className="mr-[10px] whitespace-nowrap text-[26px] font-bold sm:mr-[10px] sm:text-[28px] lg:text-[30px] xl:text-[32px]">
About Me
</h2>
<span className="inline-block h-[1px] w-full bg-black "></span>
Expand Down Expand Up @@ -45,33 +45,16 @@ export default function About() {
skills. After all, the world of programming is constantly evolving,
and I'm excited to see where this journey takes me next.
</p>
{/* <p className='mt-[20px] text-[16px] md:text-[18px]'>
If you're interested in learning more about the technologies I've been
working with recently, here's a short list:
</p> */}

{/* <div>
<ul>
<li>TypeScript</li>
<li>Node.js</li>
<li>React</li>
<li>Next.js</li>
<li>API's</li>
</ul>
<ul>
<li>JavaScript</li>
<li>HTML</li>
<li>CSS</li>
<li>Tailwind</li>
<li>Databases</li>
</ul>
</div> */}
</div>

<div className="lg:w-[35%]">
<div className="photo relative mx-auto mt-[50px] w-[70%] max-w-[280px] rounded-md sm:max-w-[320px] lg:mx-0 lg:mt-[87px] lg:w-full lg:max-w-[320px]">
<Image src={photo} alt="David's photo" className="rounded-md" />
<Image
src={photo}
alt="David's photo"
className="rounded-md"
loading="eager"
/>
</div>
</div>
</div>
Expand Down
37 changes: 37 additions & 0 deletions app/components/Contact.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
import Link from "next/link"

export default function Contact() {
return (
<section
className="mx-auto mt-[20px] py-[40px] sm:py-[50px] md:py-[70px] lg:py-[100px] xl:py-[120px] 2xl:max-w-[1140px]"
id="contact"
>
<div className="mx-auto flex flex-col justify-center">
<div className="flex flex-nowrap items-end justify-center gap-[8px] md:gap-[13px] leading-[26px]">
<span className="text-[15px] font-normal sm:mt-[4px] md:text-[18px] lg:text-[19px] xl:text-[20px]">
05.
</span>

<h2 className="mr-[10px] whitespace-nowrap text-[17px] sm:mr-[10px] md:text-[18px] lg:text-[19px] xl:text-[20px]">
What's Next?
</h2>
</div>

<p className="text-center mt-[5px] md:mt-[10px] text-[34px] font-bold sm:mr-[10px] md:text-[38px] lg:text-[42px] xl:text-[46px]">
Get In Touch
</p>

<p className="text-center text-[16px] mt-[12px] md:mt-[20px] md:inline-block md:max-w-[80%] md:mx-auto md:text-[17px] lg:max-w-[600px] xl:text-[18px]">
I'm curently looking for new opportunities in Front-End / Full-Stack development and I'd be glad to bring my expertise and personality to your business! Don't hesitate to reach out to me!
</p>

<Link
href="mailto:[email protected]"
className="inline-block mx-auto mt-[40px] md:mt-[50px] px-[30px] py-[15px] border-2 border-black rounded-md text-[16px] md:text-[17px] xl:text-[18px]"
>
Email Me
</Link>
</div>
</section>
)
}
Loading

1 comment on commit b47c82c

@vercel
Copy link

@vercel vercel bot commented on b47c82c Apr 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

portfolio – ./

portfolio-nine-sigma-18.vercel.app
portfolio-git-main-davbazz.vercel.app
portfolio-davbazz.vercel.app

Please sign in to comment.