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() {
(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