Add layout and main page components for Mood Tracker application

This commit is contained in:
Poyraz Avsever
2026-04-27 23:36:52 +03:00
parent 0a813d9c62
commit 2d217985a2
2 changed files with 456 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "Mood Tracker MVP",
description: "LocalStorage tabanli minimal mood dashboard uygulamasi.",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="tr">
<body>{children}</body>
</html>
);
}