diff --git a/src/app/page.tsx b/src/app/page.tsx index 4638919..a7c66ab 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -47,7 +47,7 @@ export default function LandingPage() { description="Klasické střihy, moderní styl a klidná atmosféra. Experti v péči o vousům a styling značkou Keune." tag="A MAN'S WORLD BARBER" tagIcon={Sparkles} - background={{ variant: "circleGradient" }} + background={{ variant: "glowing-orb" }} imageSrc="http://img.b2bpic.net/free-photo/hairdresser-preparing-equipment-work-barber-shop_23-2148182010.jpg" imageAlt="Premium barbershop interior" imagePosition="right" @@ -184,6 +184,7 @@ export default function LandingPage() { tag="Naše hodnoty" textboxLayout="default" useInvertedBackground={false} + mediaAnimation="slide-up" bulletPoints={[ { title: "Zkušení kadeřníci", description: "Tým s více než 30 lety společné zkušenosti v oboru", icon: Award @@ -231,7 +232,7 @@ export default function LandingPage() { tagIcon={Phone} title="Chcete si koupit svěží střih?" description="Zavolejte nám nebo si rezervujte appointment online. Našim týmem se na vás těšíme." - background={{ variant: "circleGradient" }} + background={{ variant: "plain" }} buttons={[ { text: "📞 Zavolat nyní", href: "tel:+420777977979" }, { text: "📅 Rezervovat", href: "https://calendly.com" } diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..4748e76 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