diff --git a/app/layout.tsx b/app/layout.tsx index a9362a4..4588f71 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,50 +1,57 @@ -import type { ReactNode } from "react"; -import type { Metadata, Viewport } from "next"; -import "./globals.css"; -import { Toaster } from "@/components/ui/toaster"; - -export const metadata: Metadata = { - title: "Taska", - description: "A lightweight, elegant to-do list application that works entirely in your browser", - manifest: "/manifest.json", -}; - -export const viewport: Viewport = { - width: "device-width", - initialScale: 1, - themeColor: "#000000", -}; - -export default function RootLayout({ - children, -}: { - children: ReactNode; -}) { - return ( - - - {/* Prevent flicker by setting initial theme before React renders */} -