6 Commits

Author SHA1 Message Date
272b3e2bfc Update theme fonts 2026-03-23 16:57:55 +00:00
176198133c Update theme fonts 2026-03-23 16:57:55 +00:00
4f680b6b0d Update src/app/page.tsx 2026-03-22 16:00:07 +00:00
b853e1e155 Merge version_1 into main
Merge version_1 into main
2026-03-22 15:58:57 +00:00
bd6a0d89fe Merge version_1 into main
Merge version_1 into main
2026-03-22 15:58:38 +00:00
fc8ca8e635 Merge version_1 into main
Merge version_1 into main
2026-03-22 15:56:36 +00:00
3 changed files with 22 additions and 6 deletions

View File

@@ -6,6 +6,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Montserrat } from "next/font/google"; import { Montserrat } from "next/font/google";
import { Open_Sans } from "next/font/google";
@@ -14,8 +15,14 @@ export const metadata: Metadata = {
description: 'Премиум сервис создания AI-инфлюенсеров под ключ. Масштабируемый контент для e-commerce, брендов и агентств без зависимости от моделей.', description: 'Премиум сервис создания AI-инфлюенсеров под ключ. Масштабируемый контент для e-commerce, брендов и агентств без зависимости от моделей.',
}; };
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"], const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
}); });
export default function RootLayout({ export default function RootLayout({
@@ -26,7 +33,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${montserrat.variable} antialiased`}> <body className={`${inter.variable} ${openSans.variable} antialiased`}>
<Tag /> <Tag />
{children} {children}
<script <script

View File

@@ -65,6 +65,15 @@ export default function LandingPage() {
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
carouselPosition="right" carouselPosition="right"
marqueeItems={[
{ type: "text", text: "Premium AI Generation" },
{ type: "text", text: "Instant Production" },
{ type: "text", text: "Unlimited Variations" },
{ type: "text", text: "Brand Consistency" },
{ type: "text", text: "24/7 Availability" }
]}
marqueeSpeed={40}
showMarqueeCard={true}
/> />
</div> </div>
@@ -298,4 +307,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

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