36 lines
1.0 KiB
TypeScript
36 lines
1.0 KiB
TypeScript
import type { Metadata } from 'next';
|
|
import { ReactNode } from 'react';
|
|
import { Montserrat, Roboto } from 'next/font/google';
|
|
import '@core/styles/globals.scss';
|
|
import '@core/styles/reset.scss';
|
|
|
|
const roboto = Roboto({
|
|
subsets: ['cyrillic'],
|
|
weight: ['300', '400', '500', '600', '700'],
|
|
variable: '--font-roboto',
|
|
});
|
|
|
|
const montseratt = Montserrat({
|
|
subsets: ['cyrillic'],
|
|
weight: ['300', '400', '500', '600', '700'],
|
|
variable: '--font-montseratt',
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Независимая оценка и судебная экспертиза | Компания ДИТРАСО',
|
|
description:
|
|
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{ children: ReactNode }>) {
|
|
return (
|
|
<html lang='en'>
|
|
<body className={`${roboto.variable} ${montseratt.variable}`}>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|