Merge version_5 into main #5

Merged
bender merged 3 commits from version_5 into main 2026-03-03 14:32:41 +00:00
3 changed files with 9 additions and 8 deletions

View File

@@ -1,11 +1,12 @@
import type { Metadata } from "next";
import { Manrope } from "next/font/google";
import { Poppins } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
const poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
@@ -39,7 +40,7 @@ export default function RootLayout({
return (
<html lang="ru" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} antialiased`}>
<body className={`${poppins.variable} antialiased`}>
<Tag />
{children}

View File

@@ -42,7 +42,7 @@ export default function HomePage() {
<div id="hero" data-section="hero" className="min-h-screen py-20">
<HeroLogoBillboardSplit
logoText="MOND"
logoText="Mond"
description="Премиальные веб-решения для бизнеса, требующего совершенства. Мы создаём адаптивные, высокопроизводительные веб-сайты, которые превращают посетителей в клиентов."
background={{ variant: "radial-gradient" }}
buttons={[
@@ -54,7 +54,7 @@ export default function HomePage() {
imageAlt="Витрина веб-разработки"
frameStyle="browser"
mediaAnimation="slide-up"
buttonAnimation="slide-up"
buttonAnimation="none"
/>
</div>

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-manrope), sans-serif;
font-family: var(--font-poppins), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-manrope), sans-serif;
font-family: var(--font-poppins), sans-serif;
}