From b474278d4da681618ddfe7ca2e6923e7c1340c03 Mon Sep 17 00:00:00 2001 From: AdityaB2731 Date: Sun, 3 Aug 2025 11:32:12 +0530 Subject: [PATCH] improved about us page --- package.json | 1 + src/pages/About/About.tsx | 117 +++++++++++++++++++++++--------------- 2 files changed, 72 insertions(+), 46 deletions(-) diff --git a/package.json b/package.json index cf740fe..f2d89f5 100644 --- a/package.json +++ b/package.json @@ -19,6 +19,7 @@ "@primer/octicons-react": "^19.15.5", "@vitejs/plugin-react": "^4.3.3", "axios": "^1.7.7", + "framer-motion": "^12.23.12", "lucide-react": "^0.525.0", "octokit": "^4.0.2", "postcss": "^8.4.47", diff --git a/src/pages/About/About.tsx b/src/pages/About/About.tsx index c1d258d..04af204 100644 --- a/src/pages/About/About.tsx +++ b/src/pages/About/About.tsx @@ -1,58 +1,83 @@ +import { motion } from "framer-motion"; +import { Lightbulb, Users, Settings, Search } from "lucide-react"; + +const features = [ + { + icon: , + title: "Simple Issue Tracking", + description: "Track your GitHub issues seamlessly with intuitive filters and search options.", + }, + { + icon: , + title: "Team Collaboration", + description: "Collaborate with your team in real-time, manage issues and pull requests effectively.", + }, + { + icon: , + title: "Customizable Settings", + description: "Customize your issue tracking workflow to match your team's needs.", + }, +]; + const About = () => { return ( -
+
+ {/* Hero Section */} -
-

About Us

-

- Welcome to GitHub Tracker! We simplify issue tracking for developers. -

+
+ + About Us + + + Welcome to GitHub Tracker — your smart solution to manage GitHub issues without chaos. +
{/* Mission Section */} -
-

Our Mission

-

- 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. -

+
+ + +

Our Mission

+

+ 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. +

+
{/* Features Section */} -
-

What We Do

- -
-
-
🔍
-

Simple Issue Tracking

-

- Track your GitHub issues seamlessly with intuitive filters and search options. -

-
- -
-
👥
-

Team Collaboration

-

- Collaborate with your team in real-time, manage issues and pull requests effectively. -

-
- -
-
⚙️
-

Customizable Settings

-

- Customize your issue tracking workflow to match your team's needs. -

-
+
+

What We Do

+
+ {features.map((feature, idx) => ( + +
{feature.icon}
+

{feature.title}

+

{feature.description}

+
+ ))}