Skip to content

Commit 1b5bdea

Browse files
author
Ru Chern Chong
committed
Fix spacing in Projects page
1 parent c96157e commit 1b5bdea

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

pages/projects.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,12 @@ const Projects = ({
2525
return (
2626
<Layout title="Projects - Ru Chern" description={pageDescription}>
2727
<StructuredData data={structuredData} />
28-
<div className="mb-8 flex flex-col">
28+
<div className="mb-16 flex flex-col">
2929
<h1 className="mb-4 text-3xl font-bold md:text-4xl">Projects</h1>
3030
<div className="mb-8">
3131
{projects.map(({ name, description, link }) => {
32-
const linkText = link.replace("https://", "");
33-
3432
return (
35-
<div key={name} className="flex flex-col items-start">
33+
<div key={name} className="mb-8 flex flex-col items-start">
3634
<h3 className="mb-2 text-lg font-semibold md:text-2xl">
3735
{name}
3836
</h3>

0 commit comments

Comments
 (0)