todo_app/app/layout.tsx
2026-06-04 19:50:02 +02:00

23 lines
487 B
TypeScript

import type { Metadata } from 'next';
import './globals.css';
import favicon from './favicon.png';
export const metadata: Metadata = {
title: 'To-Do-Liste',
description: 'Einfache Todo-App mit Next.js und TypeScript',
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="de">
<head>
<link rel="icon" href={favicon.src} type="image/png" />
</head>
<body>{children}</body>
</html>
);
}