Compare commits
20 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b7f3357b76 | |||
| 1eb6eca198 | |||
| 430daf8c10 | |||
| 73aee2f900 | |||
| 838af9dd20 | |||
| ae75ad3261 | |||
| f1f3c6264c | |||
| 59bc2fbe08 | |||
| 7c8805c534 | |||
| dac62ddf1a | |||
| 48580cfa50 | |||
| 39425d3a10 | |||
| 1f166e2cb1 | |||
| e2ab3d8508 | |||
| b5706f9166 | |||
| e44e487f71 | |||
| af84506e9d | |||
| 7aea533b89 | |||
| fc680fd894 | |||
| 72c3dd8d1c |
@@ -2,19 +2,19 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import Link from "next/link";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline/NavbarLayoutFloatingInline";
|
||||
import TextAbout from "@/components/sections/about/TextAbout/TextAbout";
|
||||
import FeatureCardTen from "@/components/sections/feature/FeatureCardTen/FeatureCardTen";
|
||||
import MetricCardOne from "@/components/sections/metrics/MetricCardOne/MetricCardOne";
|
||||
import FooterCard from "@/components/sections/footer/FooterCard/FooterCard";
|
||||
import { CheckCircle, Mail, Send, Phone, FolderOpen, Users, Clock, Calendar, Check, Cloud } from "lucide-react";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import TextAbout from "@/components/sections/about/TextAbout";
|
||||
import FeatureCardTen from "@/components/sections/feature/FeatureCardTen";
|
||||
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
||||
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||
import { CheckCircle, Mail, Send, Phone, FolderOpen, Users, Clock, Calendar, Check } from "lucide-react";
|
||||
|
||||
export default function AboutPage() {
|
||||
const navItems = [
|
||||
{ label: "Услуги", href: "#services" },
|
||||
{ label: "О компании", href: "#about" },
|
||||
{ label: "Процесс", href: "#process" },
|
||||
{ label: "Отзывы", href: "#testimonials" },
|
||||
{ name: "Услуги", id: "services" },
|
||||
{ name: "О компании", id: "about" },
|
||||
{ name: "Процесс", id: "process" },
|
||||
{ name: "Отзывы", id: "testimonials" },
|
||||
];
|
||||
|
||||
const navButton = {
|
||||
@@ -37,11 +37,9 @@ export default function AboutPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="Mond Design"
|
||||
links={navItems}
|
||||
navItems={navItems}
|
||||
button={navButton}
|
||||
animateOnLoad={true}
|
||||
eyebrowText="Mond Design"
|
||||
eyebrowIcon={Cloud}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -51,7 +49,7 @@ export default function AboutPage() {
|
||||
tagIcon={CheckCircle}
|
||||
tagAnimation="slide-up"
|
||||
title="Mond Design — это команда квалифицированных разработчиков и дизайнеров, которые создают цифровые решения для растущих бизнесов. За 1+ лет мы помогли более чем 150 компаниям перевести свой бизнес в интернет и достичь устойчивого роста."
|
||||
buttons={[{ text: "Начать проект", href: "#contact" }]}
|
||||
buttons={[{ text: "Начать проект", href: "/contact" }]}
|
||||
buttonAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
|
||||
@@ -1,8 +1,13 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import "./styles/variables.css";
|
||||
import "./styles/base.css";
|
||||
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Mond Design", description: "Профессиональная веб-разработка для вашего бизнеса"
|
||||
title: "Mond Design - Веб-разработка", description: "Профессиональная разработка современных сайтов для вашего бизнеса"
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -12,7 +17,7 @@ export default function RootLayout({
|
||||
}) {
|
||||
return (
|
||||
<html lang="ru">
|
||||
<body>{children}
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
|
||||
@@ -2,23 +2,23 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import Link from "next/link";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline/NavbarLayoutFloatingInline";
|
||||
import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi/HeroSplitKpi";
|
||||
import TextAbout from "@/components/sections/about/TextAbout/TextAbout";
|
||||
import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen/FeatureCardNineteen";
|
||||
import MetricCardOne from "@/components/sections/metrics/MetricCardOne/MetricCardOne";
|
||||
import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive/TestimonialCardFive";
|
||||
import FeatureCardTen from "@/components/sections/feature/FeatureCardTen/FeatureCardTen";
|
||||
import ContactText from "@/components/sections/contact/ContactText/ContactText";
|
||||
import FooterCard from "@/components/sections/footer/FooterCard/FooterCard";
|
||||
import { Sparkles, CheckCircle, Zap, TrendingUp, Star, Mail, Send, Phone, FolderOpen, Users, Clock, Calendar, Palette, Smartphone, RotateCcw, MessageCircle, Link as LinkIcon, Globe, Server, Database, FormInput, Cloud } from "lucide-react";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi";
|
||||
import TextAbout from "@/components/sections/about/TextAbout";
|
||||
import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen";
|
||||
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
||||
import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
|
||||
import FeatureCardTen from "@/components/sections/feature/FeatureCardTen";
|
||||
import ContactText from "@/components/sections/contact/ContactText";
|
||||
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||
import { Sparkles, CheckCircle, Zap, TrendingUp, Star, Mail, Send, Phone, FolderOpen, Users, Clock, Calendar, Palette, Smartphone, RotateCcw, MessageCircle, LinkIcon, Globe, Server, Database, FormInput } from "lucide-react";
|
||||
|
||||
export default function HomePage() {
|
||||
const navItems = [
|
||||
{ label: "Услуги", href: "#services" },
|
||||
{ label: "О компании", href: "#about" },
|
||||
{ label: "Процесс", href: "#process" },
|
||||
{ label: "Отзывы", href: "#testimonials" },
|
||||
{ name: "Услуги", id: "services" },
|
||||
{ name: "О компании", id: "about" },
|
||||
{ name: "Процесс", id: "process" },
|
||||
{ name: "Отзывы", id: "testimonials" },
|
||||
];
|
||||
|
||||
const navButton = {
|
||||
@@ -41,18 +41,16 @@ export default function HomePage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="Mond Design"
|
||||
links={navItems}
|
||||
navItems={navItems}
|
||||
button={navButton}
|
||||
animateOnLoad={true}
|
||||
eyebrowText="Mond Design"
|
||||
eyebrowIcon={Cloud}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero" className="py-20 md:py-28">
|
||||
<HeroSplitKpi
|
||||
title="Создаём современные сайты, которые работают"
|
||||
description="Mond Design — агентство веб-разработки, специализирующееся на создании красивых, функциональных и высокопроизводительных веб-сайтов для малого и среднего бизнеса."
|
||||
title="Mond Design — Создаём современные сайты, которые работают"
|
||||
description="Агентство веб-разработки, специализирующееся на создании красивых, функциональных и высокопроизводительных веб-сайтов для малого и среднего бизнеса."
|
||||
background={{ variant: "plain" }}
|
||||
kpis={[
|
||||
{ value: "24+", label: "Завершённых проектов" },
|
||||
@@ -64,8 +62,8 @@ export default function HomePage() {
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Начать проект", href: "#contact" },
|
||||
{ text: "Посмотреть портфолио", href: "#about" },
|
||||
{ text: "Начать проект", href: "/contact" },
|
||||
{ text: "Посмотреть портфолио", href: "/about" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQxJRmTnamx9ofjvEZzdJdepY5/a-modern-sophisticated-web-development-w-1772553706424-80bb3524.png"
|
||||
@@ -81,7 +79,7 @@ export default function HomePage() {
|
||||
tagIcon={CheckCircle}
|
||||
tagAnimation="slide-up"
|
||||
title="Мы создаём цифровые решения, которые превосходят ожидания клиентов. Каждый проект разрабатывается с учётом уникальных потребностей вашего бизнеса, современных трендов дизайна и лучших практик веб-разработки."
|
||||
buttons={[{ text: "Узнать больше", href: "#about" }]}
|
||||
buttons={[{ text: "Узнать больше", href: "/about" }]}
|
||||
buttonAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
@@ -225,8 +223,8 @@ export default function HomePage() {
|
||||
text="Готовы начать ваш проект? Свяжитесь с нами уже сегодня и получите консультацию от наших специалистов. Мы ответим на все ваши вопросы и поможем выбрать оптимальное решение для вашего бизнеса."
|
||||
animationType="entrance-slide"
|
||||
buttons={[
|
||||
{ text: "Отправить запрос", href: "#contact" },
|
||||
{ text: "Узнать цены", href: "#services" },
|
||||
{ text: "Отправить запрос", href: "/contact" },
|
||||
{ text: "Узнать цены", href: "/services" },
|
||||
]}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
|
||||
Reference in New Issue
Block a user