lynxkite / web /app /layout.tsx
darabos's picture
Some nodes are now visible.
a8859a7
raw
history blame
401 Bytes
import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "LynxKite MM",
description: "From Lynx Analytics",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body
className={`antialiased`}
>
{children}
</body>
</html>
);
}