1- " use client" ;
1+ ' use client' ;
22
3- import {
4- Github ,
5- User ,
6- Users ,
7- BarChart3 ,
8- TrendingUp ,
9- ArrowRight ,
10- } from "lucide-react" ;
11- import Link from "next/link" ;
3+ import { Github , User , Users , BarChart3 , TrendingUp } from 'lucide-react' ;
4+ import Link from 'next/link' ;
125
136export default function Home ( ) {
147 const tools = [
158 {
16- id : " profile-analyzer" ,
17- title : " Profile Analyzer" ,
18- subtitle : " Analyze GitHub profiles" ,
9+ id : ' profile-analyzer' ,
10+ title : ' Profile Analyzer' ,
11+ subtitle : ' Analyze GitHub profiles' ,
1912 icon : User ,
20- href : " /profile-analyzer" ,
13+ href : ' /profile-analyzer' ,
2114 } ,
2215 {
23- id : " compare-profiles" ,
24- title : " Compare Profiles" ,
25- subtitle : " Compare two developers" ,
16+ id : ' compare-profiles' ,
17+ title : ' Compare Profiles' ,
18+ subtitle : ' Compare two developers' ,
2619 icon : Users ,
27- href : " /compare-profiles" ,
28- }
20+ href : ' /compare-profiles' ,
21+ } ,
2922 ] ;
3023
3124 return (
@@ -34,11 +27,12 @@ export default function Home() {
3427 < header className = "bg-surface border-b border-elevated sticky top-0 z-50" >
3528 < div className = "max-w-7xl mx-auto px-4 sm:px-6 lg:px-8" >
3629 < div className = "flex items-center h-16" >
37- < Link href = "/" className = "flex items-center space-x-3 hover:opacity-80 transition-opacity" >
30+ < Link
31+ href = "/"
32+ className = "flex items-center space-x-3 hover:opacity-80 transition-opacity"
33+ >
3834 < Github className = "h-8 w-8 text-primary" />
39- < h1 className = "text-2xl font-bold text-primary" >
40- GitHub Toolkit
41- </ h1 >
35+ < h1 className = "text-2xl font-bold text-primary" > GitHub Toolkit</ h1 >
4236 </ Link >
4337 </ div >
4438 </ div >
@@ -47,12 +41,10 @@ export default function Home() {
4741 < main className = "max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12" >
4842 { /* Hero Section */ }
4943 < div className = "text-center mb-16" >
50- < h1 className = "text-4xl md:text-5xl font-bold text-primary mb-4" >
51- GitHub Toolkit
52- </ h1 >
44+ < h1 className = "text-4xl md:text-5xl font-bold text-primary mb-4" > GitHub Toolkit</ h1 >
5345 < p className = "text-lg md:text-xl text-gray-300 mb-8 max-w-3xl mx-auto" >
54- A comprehensive suite of tools for analyzing GitHub profiles,
55- comparing developers, and gaining insights.
46+ A comprehensive suite of tools for analyzing GitHub profiles, comparing developers, and
47+ gaining insights.
5648 </ p >
5749 </ div >
5850
@@ -97,34 +89,22 @@ export default function Home() {
9789 < div className = "w-16 h-16 bg-elevated rounded-lg flex items-center justify-center mx-auto mb-4 border border-primary" >
9890 < BarChart3 className = "h-8 w-8 text-primary" />
9991 </ div >
100- < h3 className = "text-lg font-semibold text-primary mb-2" >
101- Analytics
102- </ h3 >
103- < p className = "text-gray-400" >
104- Get detailed insights with beautiful visualizations.
105- </ p >
92+ < h3 className = "text-lg font-semibold text-primary mb-2" > Analytics</ h3 >
93+ < p className = "text-gray-400" > Get detailed insights with beautiful visualizations.</ p >
10694 </ div >
10795 < div className = "text-center" >
10896 < div className = "w-16 h-16 bg-elevated rounded-lg flex items-center justify-center mx-auto mb-4 border border-secondary" >
10997 < Users className = "h-8 w-8 text-secondary" />
11098 </ div >
111- < h3 className = "text-lg font-semibold text-secondary mb-2" >
112- Compare
113- </ h3 >
114- < p className = "text-gray-400" >
115- Compare developers side-by-side easily.
116- </ p >
99+ < h3 className = "text-lg font-semibold text-secondary mb-2" > Compare</ h3 >
100+ < p className = "text-gray-400" > Compare developers side-by-side easily.</ p >
117101 </ div >
118102 < div className = "text-center" >
119103 < div className = "w-16 h-16 bg-elevated rounded-lg flex items-center justify-center mx-auto mb-4 border border-tertiary" >
120104 < TrendingUp className = "h-8 w-8 text-tertiary" />
121105 </ div >
122- < h3 className = "text-lg font-semibold text-tertiary mb-2" >
123- Real-time
124- </ h3 >
125- < p className = "text-gray-400" >
126- Access live data from GitHub API.
127- </ p >
106+ < h3 className = "text-lg font-semibold text-tertiary mb-2" > Real-time</ h3 >
107+ < p className = "text-gray-400" > Access live data from GitHub API.</ p >
128108 </ div >
129109 </ div >
130110 </ div >
0 commit comments