Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 10d5e3e510 | |||
| 58a7644615 | |||
| e30d1b5f6b | |||
| fbd355ffb7 | |||
| 4aa46b2c83 | |||
| 8d43bdc289 | |||
| cdc9bca428 | |||
| 950908d2f4 | |||
| 50903aa250 | |||
| afb42b10d7 | |||
| 93f6cc2bc4 | |||
| 227866f506 | |||
| bf9d6743db | |||
| 195e5e79f0 | |||
| 5ffa6ab52c | |||
| bbee41e4b3 |
@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
import { Montserrat } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -22,8 +23,9 @@ export const metadata: Metadata = {
|
||||
};
|
||||
|
||||
|
||||
const publicSans = Public_Sans({
|
||||
variable: "--font-public-sans",
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
@@ -35,7 +37,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${publicSans.variable} antialiased`}>
|
||||
<body className={`${montserrat.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -8,7 +8,7 @@ import FeatureBento from '@/components/sections/feature/FeatureBento';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import HeroLogo from '@/components/sections/hero/HeroLogo';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import { CheckCircle, CheckSquare, FileText, Headphones, Info, Lock, MessageSquare, Scale, Search, Shield, Users, Zap, Mail, Phone, MapPin } from "lucide-react";
|
||||
import { CheckCircle, CheckSquare, FileText, Headphones, Info, Lock, MessageSquare, Scale, Search, Shield, Users, Zap } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -40,13 +40,13 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogo
|
||||
logoText="Підберемо юриста під вашу ситуацію"
|
||||
description="Швидкий підбір профільного спеціаліста для військових, сімейних та цивільних питань по всій Україні"
|
||||
description=""
|
||||
buttons={[
|
||||
{ text: "Залишити заявку", href: "#contact" },
|
||||
{ text: "Отримати консультацію", href: "#contact" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/businessman-using-mobile-phone-coffee-break_1163-5510.jpg"
|
||||
videoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DRWRNE7d1K86nWjtpAehAC8R6K/uploaded-1778362563456-i6fcl8am.mp4"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -116,13 +116,13 @@ export default function LandingPage() {
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={true}
|
||||
title="Зв’яжіться з нашими експертами"
|
||||
description="Ми готові допомогти вам у будь-яких правових питаннях. Заповніть форму, і ми підберемо фахівця відповідно до вашої ситуації."
|
||||
description="Ми готові допомогти вам у будь-яких правових питаннях. Заповніть форму нижче — всі поля обов'язкові для швидкого опрацювання вашого запиту."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Ваше повне ім'я", required: true },
|
||||
{ name: "phone", type: "tel", placeholder: "Ваш номер телефону", required: true },
|
||||
{ name: "name", type: "text", placeholder: "Ваше повне ім'я (Обов'язково)", className: "border-2 border-white/20 bg-black/40 text-white placeholder:text-gray-400 py-3 px-4" },
|
||||
{ name: "phone", type: "tel", placeholder: "Ваш номер телефону (Обов'язково)", className: "border-2 border-white/20 bg-black/40 text-white placeholder:text-gray-400 py-3 px-4" },
|
||||
]}
|
||||
textarea={{ name: "description", placeholder: "Детальний опис вашої справи", rows: 5, required: true }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/gavel-law-books-wooden-table_23-2148286088.jpg"
|
||||
textarea={{ name: "description", placeholder: "Детальний опис вашої справи (Обов'язково)", rows: 5, className: "border-2 border-white/20 bg-black/40 text-white placeholder:text-gray-400 py-3 px-4" }}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DRWRNE7d1K86nWjtpAehAC8R6K/uploaded-1778359303674-69qg1691.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-public-sans), sans-serif;
|
||||
font-family: var(--font-montserrat), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-public-sans), sans-serif;
|
||||
font-family: var(--font-montserrat), sans-serif;
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #0a0a0a;
|
||||
--card: #1a1a1a;
|
||||
--foreground: #ffffff;
|
||||
--primary-cta: #d4af37;
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #000612e6;
|
||||
--primary-cta: #15479c;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #1a1a1a;
|
||||
--secondary-cta: #f9f9f9;
|
||||
--secondary-cta-text: #000612e6;
|
||||
--accent: #d4af37;
|
||||
--background-accent: #001a33;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #c4c4c4;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user