Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 227866f506 | |||
| bf9d6743db | |||
| 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 (
|
||||
@@ -116,12 +116,12 @@ 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 }}
|
||||
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="http://img.b2bpic.net/free-photo/gavel-law-books-wooden-table_23-2148286088.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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user