Refactor admin area and remove legacy root paths
CI / quality (push) Waiting to run

This commit is contained in:
MOH
2026-03-13 16:14:04 +01:00
parent e32ac4cacb
commit db897e22bf
65 changed files with 216 additions and 140 deletions
-29
View File
@@ -1,29 +0,0 @@
import type { Metadata } from "next";
type RootLayoutProps = {
children: React.ReactNode;
};
export const metadata: Metadata = {
robots: {
index: false,
follow: false,
nocache: true,
googleBot: {
index: false,
follow: false,
noimageindex: true,
"max-image-preview": "none",
"max-snippet": -1,
"max-video-preview": -1,
},
},
};
export default function RootLayout({ children }: RootLayoutProps) {
return (
<div dir="ltr" lang="de" className="font-latin">
{children}
</div>
);
}