Files
microservice-importer/frontend/app/layout.tsx
T

21 lines
426 B
TypeScript

import type { Metadata } from 'next';
export const metadata: Metadata = {
title: 'Microservice Importer',
description: 'Snabbimport av recept från webben',
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="sv">
<body style={{ fontFamily: 'Arial, sans-serif', margin: 0 }}>
{children}
</body>
</html>
);
}