Skip to content

Commit 41854a5

Browse files
authored
Merge pull request #2 from vkondi/feat/feature_enhancement
chore: Minor Enhancements + Analytics
2 parents a9e2ade + 96197e0 commit 41854a5

11 files changed

Lines changed: 7 additions & 43 deletions

File tree

-9.14 KB
Binary file not shown.

app/layout.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@ export default function RootLayout({
3030

3131
return (
3232
<html lang="en">
33+
<head>
34+
<meta
35+
name="google-site-verification"
36+
content="wjsrKQApqIPyzuQgutkwO2lvykBJkxNPjFEmTx9qXFg"
37+
/>
38+
</head>
3339
<body className={inter.className}>
3440
<div className="min-h-screen bg-background flex flex-col">
3541
<div className="flex-1">{children}</div>

app/page.tsx

Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import {
66
Users,
77
BarChart3,
88
TrendingUp,
9-
Code,
109
ArrowRight,
1110
} from "lucide-react";
1211
import Link from "next/link";
@@ -26,20 +25,6 @@ export default function Home() {
2625
subtitle: "Compare two developers",
2726
icon: Users,
2827
href: "/compare-profiles",
29-
},
30-
{
31-
id: 'repository-insights',
32-
title: 'Repository Insights',
33-
subtitle: 'Deep dive into repositories',
34-
icon: Code,
35-
comingSoon: true
36-
},
37-
{
38-
id: 'team-analytics',
39-
title: 'Team Analytics',
40-
subtitle: 'Analyze team performance',
41-
icon: TrendingUp,
42-
comingSoon: true
4328
}
4429
];
4530

@@ -85,26 +70,10 @@ export default function Home() {
8570
{tool.title}
8671
</h3>
8772
<p className="text-gray-400">{tool.subtitle}</p>
88-
{tool.comingSoon && (
89-
<span className="inline-block mt-3 px-2 py-1 text-xs font-medium bg-elevated text-tertiary rounded-full">
90-
Coming Soon
91-
</span>
92-
)}
9373
</div>
9474
</div>
9575
);
9676

97-
if (tool.comingSoon) {
98-
return (
99-
<div
100-
key={tool.id}
101-
className="card cursor-not-allowed transition-all duration-200 opacity-60"
102-
>
103-
{CardContent}
104-
</div>
105-
);
106-
}
107-
10877
return (
10978
<Link key={tool.id} href={tool.href!}>
11079
<div className="card cursor-pointer transition-all duration-200 hover:shadow-lg hover:border-primary hover:scale-105">

components/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default function Footer() {
77
<footer className="bg-surface border-t border-elevated py-8 mt-16">
88
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
99
<div className="text-center text-gray-400">
10-
<p>Copyright © {currentYear} Vishwajeet Kondi. All rights reserved.</p>
10+
<p>© {currentYear} Vishwajeet Kondi</p>
1111
</div>
1212
</div>
1313
</footer>

docs/FEATURES.md

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -116,17 +116,6 @@ Compare across multiple dimensions:
116116
- **Image Optimization**: Automatic optimization via Next.js Image component
117117
- **Fast Loading**: Minimal dependencies and efficient code structure
118118

119-
## 🚀 Future Tools (Planned)
120-
121-
### Repository Insights
122-
Deep dive into individual repository statistics and analysis
123-
124-
### Team Analytics
125-
Team performance, collaboration patterns, and productivity metrics
126-
127-
### Advanced Metrics
128-
More sophisticated GitHub data analysis and visualization tools
129-
130119
## 🌟 Core Capabilities
131120

132121
- **Real-time Data**: Live data from GitHub API

public/android-chrome-192x192.png

-5.92 KB
Loading

public/android-chrome-512x512.png

-108 KB
Loading

public/apple-touch-icon.png

-6.1 KB
Loading

public/favicon-16x16.png

152 Bytes
Loading

public/favicon-32x32.png

461 Bytes
Loading

0 commit comments

Comments
 (0)