Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 59e206cbe1 | |||
| 6cfcb3d56f | |||
| ab029c16ea | |||
| bd8e9c9810 | |||
| ac7bad7c69 | |||
| 272b3e2bfc | |||
| 176198133c | |||
| 42c7a39a80 | |||
| 4f680b6b0d | |||
| b853e1e155 | |||
| bd6a0d89fe | |||
| fc8ca8e635 |
@@ -6,6 +6,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
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, брендов и агентств без зависимости от моделей.',
|
||||
};
|
||||
|
||||
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({
|
||||
@@ -26,7 +33,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${montserrat.variable} antialiased`}>
|
||||
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -65,6 +65,15 @@ export default function LandingPage() {
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
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>
|
||||
|
||||
@@ -217,7 +226,7 @@ export default function LandingPage() {
|
||||
faqsAnimation="slide-up"
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "Как долго создается AI-инфлюенсер?", content: "Стандартный персонаж создается за 5-7 дней. Профессиональные пакеты с несколькими вариантами обрабатываются за 2-3 дня. Для срочных проектов возможны ускоренные сроки при согласовании с командой."
|
||||
id: "1", title: "Как долго создается AI-инфлюенсер?", content: "Даже сложный AI-инфлюенсер готов всего за 5-7 дней, позволяя вам быстро запускать кампании, обеспечивая быструю окупаемость инвестиций."
|
||||
},
|
||||
{
|
||||
id: "2", title: "Можно ли использовать персонаж для разных платформ?", content: "Да, AI-инфлюенсер может адаптироваться под любые платформы: Instagram, TikTok, YouTube, Telegram и другие. Мы предоставляем мультиформатный выход с оптимизацией для каждого канала."
|
||||
@@ -298,4 +307,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-montserrat), sans-serif;
|
||||
font-family: var(--font-open-sans), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-montserrat), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #000612e6;
|
||||
--primary-cta: #106EFB;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #f9f9f9;
|
||||
--secondary-cta-text: #000612e6;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #106EFB;
|
||||
--background: #fbfaff;
|
||||
--card: #f7f5ff;
|
||||
--foreground: #0f0022;
|
||||
--primary-cta: #8b5cf6;
|
||||
--primary-cta-text: #fbfaff;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta-text: #0f0022;
|
||||
--accent: #d8cef5;
|
||||
--background-accent: #c4a8f9;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user