From 02323d4ec9ed71d4b103737e4b8394f37286866d Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 23:37:19 +0000 Subject: [PATCH 1/2] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 9d77ee6..6790344 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -5,6 +5,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterSimple from '@/components/sections/footer/FooterSimple'; import Link from "next/link"; +import { Zap } from 'lucide-react'; export default function ContactPage() { const navItems = [ @@ -17,8 +18,7 @@ export default function ContactPage() { const footerColumns = [ { - title: "Компания", - items: [ + title: "Компания", items: [ { label: "О нас", href: "/about" }, { label: "Услуги", href: "/services" }, { label: "Кейсы", href: "/cases" }, @@ -26,8 +26,7 @@ export default function ContactPage() { ], }, { - title: "Услуги", - items: [ + title: "Услуги", items: [ { label: "ОП классический", href: "/services/op-classic" }, { label: "ОП премиум", href: "/services/op-premium" }, { label: "Диагностика", href: "/services/diagnostic" }, @@ -35,8 +34,7 @@ export default function ContactPage() { ], }, { - title: "Контакты", - items: [ + title: "Контакты", items: [ { label: "WhatsApp", href: "https://wa.me/77XXxxxxxxx" }, { label: "Email", href: "mailto:hello@romanovarop.kz" }, { label: "Телефон", href: "tel:+77XXxxxxxxx" }, @@ -44,8 +42,7 @@ export default function ContactPage() { ], }, { - title: "Правовая информация", - items: [ + title: "Правовая информация", items: [ { label: "Политика конфиденциальности", href: "/privacy" }, { label: "Условия использования", href: "/terms" }, { label: "Согласие на обработку данных", href: "/consent" }, @@ -79,7 +76,7 @@ export default function ContactPage() {
Date: Wed, 11 Mar 2026 23:37:20 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 53 ++++++------------- 1 file changed, 16 insertions(+), 37 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..880c7c7 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,30 @@ -"use client"; - -import { memo } from "react"; -import useSvgTextLogo from "./useSvgTextLogo"; -import { cls } from "@/lib/utils"; +import React from 'react'; interface SvgTextLogoProps { - logoText: string; - adjustHeightFactor?: number; - verticalAlign?: "top" | "center"; + text: string; className?: string; } -const SvgTextLogo = memo(function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +export const SvgTextLogo: React.FC = ({ text, className = '' }) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1