@@ -2,46 +2,54 @@ const About = () => {
22 return (
33 < div className = "about-container" >
44 { /* Hero Section */ }
5- < section className = "hero bg-gray-100 dark:bg-gray-900 text-gray-900 dark:text-gray-100 py-12 px-4" >
5+ < section
6+ className = "
7+ hero
8+ bg-white text-black
9+ dark:bg-gray-800 dark:text-white
10+ py-12 px-4
11+ "
12+ >
613 < h1 className = "text-4xl font-bold text-center" > About Us</ h1 >
714 < p className = "text-lg text-center mt-4" >
815 Welcome to GitHub Tracker! We simplify issue tracking for developers.
916 </ p >
1017 </ section >
1118
1219 { /* Mission Section */ }
13- < section className = "mission py-12 text-gray-800 dark:text-gray-100 px-4" >
20+ < section className = "mission py-12 px-4" >
1421 < h2 className = "text-3xl font-semibold text-center" > Our Mission</ h2 >
1522 < p className = "text-lg text-center mt-4 max-w-3xl mx-auto" >
16- We aim to provide an efficient and user-friendly way to track GitHub
17- issues and pull requests. Our goal is to make it easy for developers to
18- stay organized and focused on their projects without getting bogged down
19- by the details.
23+ We aim to provide an efficient and user-friendly way to track GitHub issues and pull requests.
24+ Our goal is to make it easy for developers to stay organized and focused on their projects without getting bogged down by the details.
2025 </ p >
2126 </ section >
2227
2328 { /* Features Section */ }
24- < section className = "features bg-gray-100 dark:bg-gray-800 py-12 text-gray-800 dark:text-gray-100 px-4" >
29+ < section className = "features bg-gray-100 py-12 px-4" >
2530 < h2 className = "text-3xl font-semibold text-center" > What We Do</ h2 >
26- < div className = "flex justify-around mt-8 flex-wrap gap-8" >
27- < div className = "feature-item text-center max-w-xs" >
31+
32+ < div className = "flex flex-col md:flex-row md:justify-around gap-8 mt-8" >
33+ < div className = "feature-item text-center" >
2834 < div className = "feature-icon text-4xl" > 🔍</ div >
29- < h3 className = "font-semibold mt-4" > Simple Issue Tracking</ h3 >
30- < p className = "text-lg mt-2 dark:text-gray-300 " >
35+ < h3 className = "font-semibold mt-4 text-xl " > Simple Issue Tracking</ h3 >
36+ < p className = "text-base mt-2" >
3137 Track your GitHub issues seamlessly with intuitive filters and search options.
3238 </ p >
3339 </ div >
34- < div className = "feature-item text-center max-w-xs" >
40+
41+ < div className = "feature-item text-center" >
3542 < div className = "feature-icon text-4xl" > 👥</ div >
36- < h3 className = "font-semibold mt-4" > Team Collaboration</ h3 >
37- < p className = "text-lg mt-2 dark:text-gray-300 " >
43+ < h3 className = "font-semibold mt-4 text-xl " > Team Collaboration</ h3 >
44+ < p className = "text-base mt-2" >
3845 Collaborate with your team in real-time, manage issues and pull requests effectively.
3946 </ p >
4047 </ div >
41- < div className = "feature-item text-center max-w-xs" >
48+
49+ < div className = "feature-item text-center" >
4250 < div className = "feature-icon text-4xl" > ⚙️</ div >
43- < h3 className = "font-semibold mt-4" > Customizable Settings</ h3 >
44- < p className = "text-lg mt-2 dark:text-gray-300 " >
51+ < h3 className = "font-semibold mt-4 text-xl " > Customizable Settings</ h3 >
52+ < p className = "text-base mt-2" >
4553 Customize your issue tracking workflow to match your team's needs.
4654 </ p >
4755 </ div >
0 commit comments