From e9480a69e7e64de8bf1eb43dcff5fbdeb736e81b Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 02:28:38 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c6ea522..5d11c72 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,7 +13,7 @@ import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; import { Zap, Dices, - Spades, + Spade, Circle, Wand, Crown, @@ -73,7 +73,7 @@ export default function LandingPage() { imagePosition="right" marqueeItems={[ { type: "text-icon", text: "Slots", icon: Dices }, - { type: "text-icon", text: "Poker", icon: Spades }, + { type: "text-icon", text: "Poker", icon: Spade }, { type: "text-icon", text: "Roulette", icon: Circle }, { type: "text-icon", text: "Blackjack", icon: Wand }, { type: "text-icon", text: "Baccarat", icon: Crown }, @@ -236,7 +236,7 @@ export default function LandingPage() { { id: "5", title: "Is responsible gaming supported?", content: "Yes, we take responsible gaming seriously. Features include deposit limits, loss limits, session time reminders, self-exclusion options, and access to gambling support resources. Help is available 24/7 through our support team."}, { - id: "6", title: "How do I join the VIP program?", content: "VIP tiers are based on your total gaming activity and spending. Earn points with every bet—higher spend = faster tier progression. VIP members enjoy exclusive games, higher limits, personal concierge, and monthly bonuses."}, + id: "6", title: "How do I join the VIP program?", content: "VIP tiers are based on your total gaming activity and spending. Earn points with every bet—higher spend = faster tier progression. VIP members enjoy exclusive games, higher limits, personal concierge, and monthly bonuses."} ]} textPosition="left" useInvertedBackground={false} -- 2.49.1 From e4711c0f990ef9fcf67e6f0aa55ee3534f2f8684 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 02:28:39 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 53 ++++++------------- 1 file changed, 15 insertions(+), 38 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..78be09c 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,28 @@ -"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 default function SvgTextLogo({ text, className = '' }: SvgTextLogoProps) { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +} -- 2.49.1