Initial microservice-importer setup with NestJS backend and Next.js frontend

This commit is contained in:
Nils-Johan Gynther
2026-04-12 16:58:23 +02:00
commit 1608eb4d70
32 changed files with 1619 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
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>
);
}