Skip to content

Commit 80cd30a

Browse files
committed
fixing typing line break bug
1 parent 0554e01 commit 80cd30a

File tree

6 files changed

+53
-29
lines changed

6 files changed

+53
-29
lines changed

src/components/HeadingText.js

+14-24
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,20 @@
11
import LoadOnView from "../utils/LoadOnView";
22
import Typing from "./Typing";
33

4-
export default function HeadingText({ text, title, subheading, classes, idx }) {
4+
export default function HeadingText({ text, subheading, classes, idx }) {
55
return (
6-
<>
7-
{title ? (
8-
<h1 className="text-[50px] lg:text-[100px] tracking-tight font-heading leading-tight min-h-[187.5px] md:min-h-0 lg:min-h-[250px] lg:max-w-4xl pr-20 sm:pr-0">
9-
<Typing text={text} />
10-
</h1>
11-
) : (
12-
<h2
13-
className={`tracking-tight font-heading leading-tight ${
14-
subheading
15-
? `text-[34px] lg:text-[50px] lg:pt-12 pb-8 lg:pb-10 lg:min-h-[0px] lg:h-[150.5px] ${
16-
idx === 0
17-
? "min-h-[117px] sm:min-h-[74.5px]"
18-
: "min-h-[74.5px]"
19-
} `
20-
: "text-[50px] lg:text-[100px] lg:pl-20 lg:pb-16 h-[62.5px] lg:h-[189px]"
21-
} ${classes ? classes : ""}`}
22-
>
23-
<LoadOnView>
24-
<Typing text={text} />
25-
</LoadOnView>
26-
</h2>
27-
)}
28-
</>
6+
<h2
7+
className={`tracking-tight font-heading leading-tight ${
8+
subheading
9+
? `text-[34px] lg:text-[50px] lg:pt-12 pb-8 lg:pb-10 lg:min-h-[0px] lg:h-[150.5px] ${
10+
idx === 0 ? "min-h-[117px] sm:min-h-[74.5px]" : "min-h-[74.5px]"
11+
} `
12+
: "text-[50px] lg:text-[100px] lg:pl-20 lg:pb-16 h-[62.5px] lg:h-[189px]"
13+
} ${classes ? classes : ""}`}
14+
>
15+
<LoadOnView>
16+
<Typing text={text} />
17+
</LoadOnView>
18+
</h2>
2919
);
3020
}

src/components/Project.js

+13-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import Underline from "./Underline";
66

77
export default function Project({
88
title,
9+
brokenTitle,
910
img,
1011
subtitle,
1112
description,
@@ -24,7 +25,18 @@ export default function Project({
2425
return (
2526
<div className="lg:pl-20">
2627
<Line classes="pl-8 lg:pl-0" />
27-
<HeadingText subheading text={title} idx={idx} />
28+
{!brokenTitle ? (
29+
<HeadingText subheading text={title} idx={idx} />
30+
) : (
31+
<>
32+
<div className="block sm:hidden">
33+
<HeadingText subheading text={brokenTitle} idx={idx} />
34+
</div>
35+
<div className="hidden sm:block">
36+
<HeadingText subheading text={title} idx={idx} />
37+
</div>
38+
</>
39+
)}
2840
<div className="flex flex-col lg:flex-row">
2941
<div className="w-full lg:w-1/2 pb-4 lg:pb-0 lg:pr-10">
3042
<img

src/components/TitleText.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import Typing from "./Typing";
2+
3+
export default function TitleText({ text }) {
4+
return (
5+
<h1 className="text-[50px] lg:text-[100px] tracking-tight font-heading leading-tight min-h-[187.5px] md:min-h-0 lg:min-h-[250px] lg:max-w-4xl">
6+
<Typing text={text} />
7+
</h1>
8+
);
9+
}

src/components/Typing.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
import Typed from "react-typed";
22

33
export default function Typing({ text }) {
4-
return <Typed strings={[text]} typeSpeed={30} showCursor={false} />;
4+
return (
5+
<Typed
6+
strings={[text]}
7+
typeSpeed={20}
8+
showCursor={false}
9+
className="whitespace-pre"
10+
/>
11+
);
512
}

src/sections/Hero.js

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
1-
import HeadingText from "../components/HeadingText";
2-
import ImageGrid from "../components/ImageGrid";
31
import Container from "../layout/Container";
2+
import TitleText from "../components/TitleText";
3+
import ImageGrid from "../components/ImageGrid";
44

55
export default function Hero() {
66
return (
77
<section id="hero" className="pt-16 lg:pt-24">
88
<Container>
9-
<HeadingText title text="Fullstack Developer in Toronto" />
9+
<div className="block sm:hidden">
10+
<TitleText title text={`Fullstack\nDeveloper\nin Toronto`} />
11+
</div>
12+
<div className="hidden sm:block">
13+
<TitleText title text={`Fullstack Developer\nin Toronto`} />
14+
</div>
1015
<ImageGrid img="rainbow.jpeg" alt="Rainbow in sky" />
1116
</Container>
1217
</section>

src/sections/Portfolio.js

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ export default function Portfolio() {
88
const projects = [
99
{
1010
title: "↳ Climate Change Podcasting",
11+
brokenTitle: "↳ Climate Change\nPodcasting",
1112
img: "spot",
1213
subtitle:
1314
"Climate Education Credits - Built for New Relic x DEV's “Hack the Planet” Hackathon",

0 commit comments

Comments
 (0)