17 lines
375 B
TypeScript
17 lines
375 B
TypeScript
import type { Metadata } from "next";
|
|
import type React from "react";
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "SFERA",
|
|
description: "Semantic 1C operating workspace"
|
|
};
|
|
|
|
export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {
|
|
return (
|
|
<html lang="ru">
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|