Skip to content

Commit d8cf8c4

Browse files
committed
Adjusted background color to seperate sections on index.tsx
1 parent 7f6d530 commit d8cf8c4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

client/src/pages/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ export default function AboutPage() {
237237
{/* about section */}
238238
<section
239239
id="about"
240-
className="container mx-auto flex min-h-screen max-w-6xl flex-col items-center justify-center px-4 py-20"
240+
className={`container mx-auto flex min-h-screen max-w-6xl flex-col items-center justify-center px-4 py-20 ${COLORS.background.card}`}
241241
>
242242
<div className="grid items-center gap-8 md:grid-cols-2">
243243
<div>
@@ -384,7 +384,7 @@ export default function AboutPage() {
384384
{/* why this app section */}
385385
<section
386386
id="why"
387-
className="container mx-auto min-h-screen max-w-6xl px-4 py-12 md:py-20"
387+
className={`${COLORS.background.card} container mx-auto min-h-screen max-w-6xl px-4 py-12 md:py-20`}
388388
>
389389
<div className="mb-12 text-center">
390390
<h2
@@ -686,7 +686,7 @@ export default function AboutPage() {
686686
</section>
687687
<section
688688
id="contact"
689-
className="container mx-auto min-h-screen max-w-6xl px-4 py-12 md:py-20"
689+
className={`${COLORS.background.card} container mx-auto max-w-6xl px-4 py-12 md:py-20`}
690690
>
691691
<div className="mb-12 text-center">
692692
<h2

0 commit comments

Comments
 (0)