Skip to content

Commit f8a3fe1

Browse files
committed
aashuu
1 parent 3ae688b commit f8a3fe1

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

app/layout.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,11 @@ const geistMono = localFont({
1818
});
1919

2020
export const metadata: Metadata = {
21-
title: "Github Stats Card",
22-
description: "A simple and customizable Github Stats Card",
23-
};
21+
title: "GitHub Stats Card Generator",
22+
description: "A simple and customizable Github Stats Card generator.",
23+
icons: {
24+
icon: "/app/LOGO.png"
25+
}};
2426

2527
export default function RootLayout({
2628
children,
@@ -39,7 +41,7 @@ export default function RootLayout({
3941
<div className="flex justify-end p-4 space-x-2">
4042
<Button variant="outline" size="icon" asChild>
4143
<a
42-
href="https://github.com/marrrkkk/github-stats-card"
44+
href="https://github.com/codeaashu/GitHub-Stats-Card-Generator"
4345
target="_blank"
4446
rel="noopener noreferrer"
4547
>

app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import GitHubStats from '../components/GitHubStats';
33
export default function Home() {
44
return (
55
<main className="max-w-4xl mx-auto p-8">
6-
<h1 className="text-3xl font-bold mb-8">GitHub Stats Generator</h1>
6+
<h1 className="text-3xl font-bold mb-8">GitHub Stats Card Generator</h1>
77
<GitHubStats />
88
<div className="mt-8">
99
</div>

0 commit comments

Comments
 (0)