Initial commit: SECURE-T project with complete documentation

This commit is contained in:
albivkt
2025-06-30 20:47:08 +03:00
parent c4d8e37a7e
commit 8b5edf2c88
24 changed files with 6194 additions and 110 deletions

View File

@ -4,17 +4,17 @@ import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
subsets: ["latin", "cyrillic"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
subsets: ["latin", "cyrillic"],
});
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "GUNDYREV - Инновационные IT-решения и поставка электроники",
description: "Разработка программного обеспечения, поставка электроники B2B/B2G, услуги по улучшению пользовательского опыта в интернете",
};
export default function RootLayout({
@ -23,7 +23,7 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html lang="en">
<html lang="ru">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>