diff --git a/src/pages/About/About.tsx b/src/pages/About/About.tsx index 04af2048..a2c25388 100644 --- a/src/pages/About/About.tsx +++ b/src/pages/About/About.tsx @@ -1,86 +1,349 @@ import { motion } from "framer-motion"; -import { Lightbulb, Users, Settings, Search } from "lucide-react"; +import { Search, Users, Settings, Lightbulb, Github } from "lucide-react"; const features = [ { - icon: , + icon: , title: "Simple Issue Tracking", - description: "Track your GitHub issues seamlessly with intuitive filters and search options.", + description: + "Track GitHub issues effortlessly with powerful filters and search capabilities.", }, { - icon: , + icon: , title: "Team Collaboration", - description: "Collaborate with your team in real-time, manage issues and pull requests effectively.", + description: + "Collaborate seamlessly with your team and manage pull requests efficiently.", }, { - icon: , - title: "Customizable Settings", - description: "Customize your issue tracking workflow to match your team's needs.", + icon: , + title: "Custom Workflows", + description: + "Adapt issue management workflows to fit your team's unique needs.", }, ]; +const stats = [ + { value: "10K+", label: "Repositories Tracked" }, + { value: "50K+", label: "Issues Managed" }, + { value: "2K+", label: "Contributors" }, + { value: "99.9%", label: "Platform Uptime" }, +]; + +const team = [ + { + name: "John Doe", + role: "Frontend Developer", + image: "https://i.pravatar.cc/150?img=1", + }, + { + name: "Sarah Smith", + role: "Backend Developer", + image: "https://i.pravatar.cc/150?img=5", + }, + { + name: "Alex Brown", + role: "UI/UX Designer", + image: "https://i.pravatar.cc/150?img=8", + }, +]; + +const testimonials = [ + { + name: "Michael Johnson", + quote: + "GitHub Tracker transformed the way our team handles issues and pull requests.", + }, + { + name: "Emily Davis", + quote: + "Beautiful UI, excellent performance, and a huge productivity boost.", + }, + { + name: "David Wilson", + quote: "The best GitHub issue management experience we've ever used.", + }, +]; + +const fadeUp = { + hidden: { + opacity: 0, + y: 40, + }, + visible: { + opacity: 1, + y: 0, + transition: { + duration: 0.6, + }, + }, +}; + const About = () => { return ( -
- +
+ {/* Background Grid */} +
+ {/* Hero Section */} -
- - About Us - - - Welcome to GitHub Tracker — your smart solution to manage GitHub issues without chaos. - +
+
+
+ +
+ +
+ + GitHub Issue Management Platform +
+ +

+ Manage GitHub Issues + + Smarter & Faster + +

+ +

+ Stay organized, collaborate effectively, and track repositories + with a modern dashboard built for developers and teams. +

+ +
+ + + +
+
+ + {/* Dashboard Preview */} + + GitHub Tracker Dashboard + +
- {/* Mission Section */} -
- +
+ {stats.map((stat, idx) => ( + +

+ {stat.value} +

+

{stat.label}

+
+ ))} +
+
+ + {/* Mission */} +
+ - + +

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

+ We believe developers should spend less time managing issues and + more time building amazing products. GitHub Tracker simplifies + repository management, issue tracking, and team collaboration in one + streamlined platform.

- {/* Features Section */} + {/* Features */}
-

What We Do

-
+

What We Do

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

{feature.title}

-

{feature.description}

+
+ {feature.icon} +
+ +

{feature.title}

+ +

+ {feature.description} +

+
+ ))} +
+
+ + {/* Dashboard Showcase */} +
+ +

Powerful Dashboard

+ +

+ Visualize repository activity, monitor issues, and track pull + requests from one beautiful interface. +

+ + Dashboard Showcase +
+
+ + {/* Team */} +
+

+ Meet Our Contributors +

+ +
+ {team.map((member, idx) => ( + + {member.name} + +

{member.name}

+ +

{member.role}

))}
-
+ + {/* Testimonials */} +
+

What Users Say

+ +
+ {testimonials.map((testimonial, idx) => ( + +

+ "{testimonial.quote}" +

+ +

{testimonial.name}

+
+ ))} +
+
+ + {/* Footer */} + +
); };