feat: new marketing page

This commit is contained in:
2025-11-05 23:50:34 +03:00
parent e01aafdf01
commit cd42a191f9
3 changed files with 120 additions and 29 deletions

View File

@@ -1,10 +1,10 @@
import type { Metadata } from "next";
import { Fira_Sans } from "next/font/google";
import { Roboto_Flex } from "next/font/google";
import "./globals.css";
const firaSans = Fira_Sans({
variable: "--font-fira-sans",
weight: ["400", "500", "600", "700", "100", "200", "300", "800", "900"],
const robotoFlex = Roboto_Flex({
variable: "--font-roboto-flex",
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
subsets: ["latin", "cyrillic"],
});
@@ -20,7 +20,7 @@ export default function RootLayout({
}>) {
return (
<html lang="ru">
<body className={`${firaSans.variable} antialiased`}>{children}</body>
<body className={`${robotoFlex.variable} antialiased`}>{children}</body>
</html>
);
}