Skip to content

Commit 0d6a0c2

Browse files
committed
wip
1 parent 0217451 commit 0d6a0c2

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

components/navbar.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const WhatsappComponent = ({ ReactGA, showHuman, recaptchaRef }) => (
3232
})
3333
}}
3434
href={showHuman ? `https://api.whatsapp.com/send?phone=${process.env.PHONE_NUMBER}` : '#'}
35-
className="whitespace-nowrap w-1/2 px-3 py-2 text-white bg-[#66b135] border rounded-lg" rel="noreferrer">
35+
className="whitespace-nowrap w-1/2 px-3 py-2 text-gray-900 border-gray-400 bg-[#6BCB77] border rounded-lg" rel="noreferrer">
3636
<FaWhatsapp className='inline-block mb-1' /> Whatsapp
3737
</a>
3838
)
@@ -49,8 +49,8 @@ const ResumePdfComponent = ({ showHuman, recaptchaRef, ReactGA }) => (
4949
label: 'resumePdf'
5050
})
5151
}}
52-
className="hover:cursor-pointer hover:text-red-600" rel="noreferrer">
53-
<IconDonwload className='inline-block text-3xl transform hover:scale-125' /> {' '} Download resume
52+
className="whitespace-nowrap w-1/2 px-3 py-2 text-white bg-[#FD5D5D] border rounded-lg" rel="noreferrer">
53+
<IconDonwload className='inline-block mb-1' /> {' '} Resume
5454
</a>
5555
)
5656

pages/index.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import { randomElement } from '@/components/helper'
1212
import {
1313
AlertRobotComponent,
1414
calendly,
15-
LinkedinComponent,
1615
MailComponent,
1716
paypal,
1817
ResumePdfComponent,
@@ -116,7 +115,7 @@ const Home = ({ bio, avatar_url, blog, email, randomE }) => {
116115
</Transition>
117116
<div className="flex items-center justify-between gap-3 mt-2">
118117

119-
<LinkedinComponent showHuman={showHuman} email={email} recaptchaRef={recaptchaRef} ReactGA={ReactGA} />
118+
<ResumePdfComponent showHuman={showHuman} email={email} recaptchaRef={recaptchaRef} ReactGA={ReactGA} />
120119
<WhatsappComponent showHuman={showHuman} email={email} recaptchaRef={recaptchaRef} ReactGA={ReactGA} />
121120

122121
<a
@@ -141,7 +140,6 @@ const Home = ({ bio, avatar_url, blog, email, randomE }) => {
141140
<hr className='h-px my-4 border-0 bg-gradient-to-l from-gray-200 via-gray-800 to-gray-200' />
142141
<div className="flex flex-col space-y-5">
143142
{calendly}
144-
<ResumePdfComponent showHuman={showHuman} email={email} recaptchaRef={recaptchaRef} ReactGA={ReactGA} />
145143
<MailComponent showHuman={showHuman} email={email} recaptchaRef={recaptchaRef} ReactGA={ReactGA} />
146144
{paypal}
147145
</div>

0 commit comments

Comments
 (0)