Initial SFERA platform baseline

This commit is contained in:
2026-05-16 19:03:49 +03:00
commit 3b845c8fce
282 changed files with 55045 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
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>
);
}