Skip to content

Commit 03a879e

Browse files
feat: add codequest metadata
1 parent 5ef49d4 commit 03a879e

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

src/app/icon.png

46.6 KB
Loading

src/app/layout.tsx

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ const geistMono = Geist_Mono({
1313
});
1414

1515
export const metadata: Metadata = {
16-
title: "Create Next App",
17-
description: "Generated by create next app",
16+
title: "CodeQuest",
17+
description:
18+
"The gamified learning platform for programming beginners. Get structured, step-by-step challenges, track your progress, and build confidence.",
1819
};
1920

2021
export default function RootLayout({
@@ -24,11 +25,7 @@ export default function RootLayout({
2425
}>) {
2526
return (
2627
<html lang="en">
27-
<body
28-
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
29-
>
30-
{children}
31-
</body>
28+
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>{children}</body>
3229
</html>
3330
);
3431
}

0 commit comments

Comments
 (0)