todo_app/app/layout.tsx

24 lines
487 B
TypeScript
Raw Normal View History

2026-06-04 17:18:27 +00:00
import type { Metadata } from 'next';
import './globals.css';
2026-06-04 17:50:02 +00:00
import favicon from './favicon.png';
2026-06-04 17:18:27 +00:00
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">
2026-06-04 17:50:02 +00:00
<head>
<link rel="icon" href={favicon.src} type="image/png" />
</head>
2026-06-04 17:18:27 +00:00
<body>{children}</body>
</html>
);
}