feat: header menus
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import type { Metadata } from 'next';
|
||||
import { ReactNode } from 'react';
|
||||
import { Roboto } from 'next/font/google';
|
||||
import { Montserrat, Roboto } from 'next/font/google';
|
||||
import '@core/styles/globals.scss';
|
||||
import '@core/styles/reset.scss';
|
||||
|
||||
@@ -10,6 +10,12 @@ const roboto = Roboto({
|
||||
variable: '--font-roboto',
|
||||
});
|
||||
|
||||
const montseratt = Montserrat({
|
||||
subsets: ['cyrillic'],
|
||||
weight: ['300', '400', '500', '600', '700'],
|
||||
variable: '--font-montseratt',
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Независимая оценка и судебная экспертиза | Компания ДИТРАСО',
|
||||
description:
|
||||
@@ -21,7 +27,9 @@ export default function RootLayout({
|
||||
}: Readonly<{ children: ReactNode }>) {
|
||||
return (
|
||||
<html lang='en'>
|
||||
<body className={`${roboto.variable}`}>{children}</body>
|
||||
<body className={`${roboto.variable} ${montseratt.variable}`}>
|
||||
{children}
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user