21 lines
495 B
TypeScript
21 lines
495 B
TypeScript
import type { Metadata, Viewport } from 'next';
|
|
import './globals.css';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Führungsbuch — Sternwarte Welzheim',
|
|
description: 'Führungsbuch für die Sternwarte Welzheim',
|
|
};
|
|
|
|
export const viewport: Viewport = {
|
|
width: 'device-width',
|
|
initialScale: 1,
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="de">
|
|
<body className="antialiased">{children}</body>
|
|
</html>
|
|
);
|
|
}
|