Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 25 additions & 17 deletions src/pages/About/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,46 +2,54 @@ const About = () => {
return (
<div className="about-container">
{/* Hero Section */}
<section className="hero bg-gray-100 dark:bg-gray-900 text-gray-900 dark:text-gray-100 py-12 px-4">
<section
className="
hero
bg-white text-black
dark:bg-gray-800 dark:text-white
py-12 px-4
"
>
<h1 className="text-4xl font-bold text-center">About Us</h1>
<p className="text-lg text-center mt-4">
Welcome to GitHub Tracker! We simplify issue tracking for developers.
</p>
</section>

{/* Mission Section */}
<section className="mission py-12 text-gray-800 dark:text-gray-100 px-4">
<section className="mission py-12 px-4">
<h2 className="text-3xl font-semibold text-center">Our Mission</h2>
<p className="text-lg text-center mt-4 max-w-3xl mx-auto">
We aim to provide an efficient and user-friendly way to track GitHub
issues and pull requests. Our goal is to make it easy for developers to
stay organized and focused on their projects without getting bogged down
by the details.
We aim to provide an efficient and user-friendly way to track GitHub issues and pull requests.
Our goal is to make it easy for developers to stay organized and focused on their projects without getting bogged down by the details.
</p>
</section>

{/* Features Section */}
<section className="features bg-gray-100 dark:bg-gray-800 py-12 text-gray-800 dark:text-gray-100 px-4">
<section className="features bg-gray-100 py-12 px-4">
<h2 className="text-3xl font-semibold text-center">What We Do</h2>
<div className="flex justify-around mt-8 flex-wrap gap-8">
<div className="feature-item text-center max-w-xs">

<div className="flex flex-col md:flex-row md:justify-around gap-8 mt-8">
<div className="feature-item text-center">
<div className="feature-icon text-4xl">🔍</div>
<h3 className="font-semibold mt-4">Simple Issue Tracking</h3>
<p className="text-lg mt-2 dark:text-gray-300">
<h3 className="font-semibold mt-4 text-xl">Simple Issue Tracking</h3>
<p className="text-base mt-2">
Track your GitHub issues seamlessly with intuitive filters and search options.
</p>
</div>
<div className="feature-item text-center max-w-xs">

<div className="feature-item text-center">
<div className="feature-icon text-4xl">👥</div>
<h3 className="font-semibold mt-4">Team Collaboration</h3>
<p className="text-lg mt-2 dark:text-gray-300">
<h3 className="font-semibold mt-4 text-xl">Team Collaboration</h3>
<p className="text-base mt-2">
Collaborate with your team in real-time, manage issues and pull requests effectively.
</p>
</div>
<div className="feature-item text-center max-w-xs">

<div className="feature-item text-center">
<div className="feature-icon text-4xl">⚙️</div>
<h3 className="font-semibold mt-4">Customizable Settings</h3>
<p className="text-lg mt-2 dark:text-gray-300">
<h3 className="font-semibold mt-4 text-xl">Customizable Settings</h3>
<p className="text-base mt-2">
Customize your issue tracking workflow to match your team's needs.
</p>
</div>
Expand Down