Skip to content

Commit 79cf71e

Browse files
authored
Merge pull request #9 from zhavir/implement-personal-portfolio
fix: fix escaping
2 parents f72750a + 5f7150a commit 79cf71e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/app/components/ContactSection.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ const EmailSection = () => {
3939
<div className="bg-[radial-gradient(ellipse_at_center,_var(--tw-gradient-stops))] from-primary-600 to-transparent rounded-full h-2/3 w-6/12 z-0 blur-3xl absolute top-1/3 -left-4 transform -translate-x-1/2 -translate-y-1/2"></div>
4040
<div className="z-0">
4141
<h5 className="text-xl font-bold text-primaryText my-2">
42-
Let's Connect
42+
{`Let's Connect`}
4343
</h5>
4444
<p className="text-secondaryText mb-4 max-w-md">
45-
Reach me out if you're interested!
45+
{`Reach me out if you're interested!`}
4646
</p>
4747
<div className="socials flex flex-row gap-2">
4848
<Link href="https://github.com/zhavir" target="_blank">

src/app/components/HeroSection.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const HeroSection = () => {
1111
<div className="col-span-8 place-self-center text-center sm:text-left justify-self-start">
1212
<h1 className="text-primaryText mb-4 text-4xl sm:text-5xl lg:text-6xl lg:leading-normal font-extrabold ">
1313
<span className="text-transparent bg-clip-text bg-gradient-to-r from-primary-600 to-secondary-400 ">
14-
Hello I'm{' '}
14+
{`Hello I'm`}{' '}
1515
</span>
1616
<br></br>
1717
<TypeAnimation
@@ -31,7 +31,7 @@ const HeroSection = () => {
3131
/>
3232
</h1>
3333
<p className="text-secondaryText text-base sm:text-lg mb-6 lg:text-xl mr-10">
34-
I'm a Softwere engineer with 10 years of experience
34+
{`I'm a Softwere engineer with 10 years of experience`}
3535
</p>
3636
<div>
3737
<Link

0 commit comments

Comments
 (0)