feat: add start section

This commit is contained in:
2025-05-28 15:07:29 +03:00
parent 498aa4e4c1
commit 855fc3f740
32 changed files with 594 additions and 408 deletions

View File

@@ -1,32 +1,38 @@
import type { Metadata } from 'next';
import { Geist, Geist_Mono } from 'next/font/google';
import './globals.css';
import { Open_Sans } from 'next/font/google';
import '@core/styles/reset.scss';
import '@core/styles/globals.scss';
const geistSans = Geist({
variable: '--font-geist-sans',
subsets: ['latin'],
});
const geistMono = Geist_Mono({
variable: '--font-geist-mono',
subsets: ['latin'],
const openSans = Open_Sans({
subsets: ['latin', 'cyrillic'],
weight: ['300', '400', '500', '600', '700'],
variable: '--open-sans',
});
export const metadata: Metadata = {
title: 'Пожарная экспертиза',
description: 'Пожарная экспертиза',
title: 'Обследование на соответствие пожарной безопасности',
description:
'Полное обследование объекта на соответствие требованиям пожарной безопасности',
openGraph: {
title: 'Обследование на соответствие пожарной безопасности',
description:
'Полное обследование объекта на соответствие требованиям пожарной безопасности',
siteName: 'Обследование на соответствие пожарной безопасности',
// images: [
// {
// url: `MetaSR.png`,
// alt: 'icon',
// },
// ],
},
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
}: Readonly<{ children: React.ReactNode }>) {
return (
<html lang='en'>
<body className={`${geistSans.variable} ${geistMono.variable}`}>
{children}
</body>
<body className={`${openSans.variable}`}>{children}</body>
</html>
);
}