Skip to content

Commit dd89cb8

Browse files
committed
fix: replace bluish gray backgrounds with pure black for dark mode
1 parent 7798389 commit dd89cb8

29 files changed

+45
-45
lines changed

src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const App = () => {
2323
}, []);
2424

2525
return (
26-
<div className="min-h-screen flex flex-col bg-white dark:bg-gray-900">
26+
<div className="min-h-screen flex flex-col bg-white dark:bg-black">
2727
<RouterProvider router={router} />
2828
</div>
2929
);

src/components/AboutUs/GoalsSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { FC } from 'react';
44

55
const GoalsSection: FC = () => {
66
return (
7-
<section id="goals" className="w-full py-24 bg-white dark:bg-gray-900">
7+
<section id="goals" className="w-full py-24 bg-white dark:bg-black">
88
<div className="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8">
99
{/* Section header */}
1010
<div className="text-center mb-16">

src/components/AboutUs/MissionSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const MissionSection = () => {
55
return (
66
<section
77
id={content.sectionId}
8-
className="w-full py-24 bg-white dark:bg-gray-900"
8+
className="w-full py-24 bg-white dark:bg-black"
99
>
1010
<div className="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8">
1111
{/* Section header */}

src/components/AboutUs/PrinciplesSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const PrinciplesSection = () => {
55
return (
66
<section
77
id={principlesContent.sectionId}
8-
className="w-full py-24 bg-white dark:bg-gray-900"
8+
className="w-full py-24 bg-white dark:bg-black"
99
>
1010
<div className="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8">
1111
{/* Section header */}

src/components/AboutUs/ProjectSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const ProjectsSection = () => {
1313
return (
1414
<section
1515
id={projectsContent.sectionId}
16-
className="w-full py-24 dark:bg-gray-900"
16+
className="w-full py-24 dark:bg-black"
1717
>
1818
<div className="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8">
1919
{/* Section header */}

src/components/AboutUs/RoadmapSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const RoadmapSection: React.FC = () => {
66
return (
77
<section
88
id={roadmapContent.sectionId}
9-
className="w-full py-24 bg-white dark:bg-gray-900"
9+
className="w-full py-24 bg-white dark:bg-black"
1010
>
1111
<div className="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8">
1212
{/* Section header */}

src/components/DeveloperTestimonials.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const ReviewCard = ({
3232

3333
return (
3434
<motion.div
35-
className="bg-white dark:bg-gray-900 rounded-xl p-6 flex flex-col items-center text-center min-h-[250px] h-auto w-[350px] shadow-lg border border-gray-200 dark:border-gray-700 mx-2 justify-between"
35+
className="bg-white dark:bg-black rounded-xl p-6 flex flex-col items-center text-center min-h-[250px] h-auto w-[350px] shadow-lg border border-gray-200 dark:border-gray-700 mx-2 justify-between"
3636
variants={testimonialCard}
3737
initial="hidden"
3838
whileInView="visible"

src/components/Donation.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const Donation: React.FC = () => {
2121
};
2222

2323
return (
24-
<section className="relative overflow-hidden bg-white dark:bg-gray-900 text-black dark:text-white py-16 px-4">
24+
<section className="relative overflow-hidden bg-white dark:bg-black text-black dark:text-white py-16 px-4">
2525
<div className="max-w-[90%] mx-auto flex flex-col lg:flex-row items-center justify-center lg:gap-12">
2626
{/* Left Side - Text Content */}
2727
<motion.div

src/components/Info.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const Info: React.FC = () => {
4848

4949
return (
5050
<>
51-
<div className="min-h-screen bg-gradient-to-b from-slate-50 to-white dark:from-slate-900 dark:to-gray-900 font-Inter">
51+
<div className="min-h-screen bg-gradient-to-b from-slate-50 to-white dark:from-black dark:to-black font-Inter">
5252
<main className="max-w-7xl mx-auto px-3 sm:px-4 md:px-6 py-8 sm:py-10 md:py-12 space-y-12 sm:space-y-16 md:space-y-20">
5353
{/* Hero Section */}
5454
<section className="container mx-auto px-2 sm:px-4 py-6 sm:py-8 max-w-7xl">

src/components/Stats.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ import {
1010

1111
const Stats = () => {
1212
return (
13-
<section className="max-w-7xl mx-auto py-10 sm:py-16 md:py-20 px-4 sm:px-6 bg-white dark:bg-gray-900">
13+
<section className="max-w-7xl mx-auto py-10 sm:py-16 md:py-20 px-4 sm:px-6 bg-white dark:bg-black">
1414
<div className="relative mb-12 sm:mb-16 md:mb-24">
1515
<div className="absolute left-0 top-1/2 w-full h-0.5 sm:h-1 bg-gradient-to-r from-red-500 via-yellow-500 to-blue-500 transform -translate-y-1/2 opacity-30"></div>
1616

1717
<motion.div
18-
className="relative z-10 text-center mx-auto max-w-2xl bg-white dark:bg-gray-900 px-2 py-2 sm:py-4"
18+
className="relative z-10 text-center mx-auto max-w-2xl bg-white dark:bg-black px-2 py-2 sm:py-4"
1919
initial="hidden"
2020
whileInView="visible"
2121
viewport={{ once: true, amount: 0.3 }}

0 commit comments

Comments
 (0)