21 lines
395 B
TypeScript
21 lines
395 B
TypeScript
// starter/src/app/layout.tsx
|
|
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "SFERA",
|
|
description: "Enterprise AI CRM/ERP workspace",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="ru" suppressHydrationWarning>
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|