Skip to content

Commit 458f22a

Browse files
committed
remove-wave
1 parent 3a6b5aa commit 458f22a

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

pages/index.jsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ export default function Home({
141141
</Layout>
142142
);
143143
}
144+
144145
function ProjectCard({ json, basePath }) {
145146
return (
146147
<Link
@@ -228,8 +229,7 @@ function Carousel({ projects, basePath }) {
228229
}
229230
return (
230231
<div className="bg-grey">
231-
<Wave180 className="rotate-180"></Wave180>
232-
<div className="container mx-auto py-4 relative overflow-hidden">
232+
<div className="container mx-auto mt-16 mb-16 py-4 p-4 relative overflow-hidden">
233233
<h2 className="text-3xl text-center font-bold">Recent Projects</h2>
234234
<div
235235
className="flex gap-4 flex-row p-4 justify-center transition"
@@ -264,7 +264,6 @@ function Carousel({ projects, basePath }) {
264264
<Icon className="" name="arrow-right" />
265265
</button>
266266
</div>
267-
<Wave></Wave>
268267
</div>
269268
);
270269
}

styles/globals.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@
4848
}
4949
}
5050

51+
.project-card-home {
52+
background: linear-gradient(90deg, #c0abfe, #90f7df);
53+
}
5154
.markdown h1 {
5255
@apply text-4xl;
5356
@apply mb-4;
@@ -250,6 +253,11 @@ html {
250253
scroll-behavior: smooth;
251254
}
252255

256+
footer {
257+
border-top: 0.5px solid;
258+
border-top-color: #cabbf6;
259+
background-color: rgb(21, 21, 21);
260+
}
253261
/* Scroll to top when button is clicked */
254262
.scroll-up-button:target {
255263
scroll-behavior: auto;

0 commit comments

Comments
 (0)