From c9f47a147378722c7d22a2640c536a6c82bae9df Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 13:08:16 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/page.tsx b/src/app/page.tsx index a2ae495..f297b04 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -51,6 +51,7 @@ export default function LandingPage() { imageSrc="http://img.b2bpic.net/free-photo/modern-kitchen-with-pink-red-lights_1268-14350.jpg" imageAlt="Games Club premium gaming lounge with modern design" mediaAnimation="slide-up" + background={{ variant: "plain" }} testimonials={[ { name: "Sarah M.", handle: "Regular Guest", testimonial: "Fantastic experience! The place is fun for everyone with billiards, table tennis, and many games. The café is great too. The atmosphere is amazing and well organized.", rating: 5, -- 2.49.1 From 32cfb9616577e8d8da7ebe42894923e8b01f365b Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 13:08:17 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 56 ++++++------------- 1 file changed, 18 insertions(+), 38 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..834ead7 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,31 @@ -"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; + dominantBaseline?: 'auto' | 'baseline' | 'before-edge' | 'text-before-edge' | 'middle' | 'central' | 'after-edge' | 'text-after-edge' | 'ideographic' | 'alphabetic' | 'hanging' | 'mathematical' | 'inherit'; } -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 = '', + dominantBaseline = 'middle', +}) => { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +}; -- 2.49.1