Skip to content

Commit 97a43c1

Browse files
committed
update app metadata
1 parent 89ba3b3 commit 97a43c1

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

frontend/src/app/layout.tsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1+
import { ThemeProvider } from "@/components/theme-provider";
12
import type { Metadata } from "next";
23
import { Geist, Geist_Mono } from "next/font/google";
34
import "./globals.css";
4-
import { ThemeProvider } from "@/components/theme-provider";
55

66
const geistSans = Geist({
77
variable: "--font-geist-sans",
@@ -14,8 +14,9 @@ const geistMono = Geist_Mono({
1414
});
1515

1616
export const metadata: Metadata = {
17-
title: "Create Next App",
18-
description: "Generated by create next app",
17+
title: "Taskaza",
18+
description:
19+
"Taskaza is a modern productivity app that blends secure APIs, AI-powered assistance, and a clean web dashboard to help you manage tasks effortlessly.",
1920
};
2021

2122
export default function RootLayout({
@@ -24,7 +25,7 @@ export default function RootLayout({
2425
children: React.ReactNode;
2526
}>) {
2627
return (
27-
<html lang="en" suppressHydrationWarning>
28+
<html lang="en">
2829
<body
2930
className={`${geistSans.variable} ${geistMono.variable} antialiased bg-background`}
3031
>

0 commit comments

Comments
 (0)