From fc77d71a3452b5da46660c1597317bedf5b06d78 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 16:17:34 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index a4acafb..29386ae 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -19,7 +19,7 @@ export default function LandingPage() { borderRadius="rounded" contentWidth="small" sizing="largeSmall" - background="aurora" + background="circleGradient" cardStyle="subtle-shadow" primaryButtonStyle="diagonal-gradient" secondaryButtonStyle="layered" @@ -46,7 +46,7 @@ export default function LandingPage() { description="Un bar convivial où se retrouver pour profiter d'un bon moment entre amis, déguster des cocktails de qualité et passer une soirée agréable dans une ambiance chaleureuse." tag="⭐ 4,7/5 - 192 avis" tagAnimation="slide-up" - background={{ variant: "aurora" }} + background={{ variant: "plain" }} imageSrc="http://img.b2bpic.net/free-photo/group-male-friends-raising-toast-restaurant_23-2147861908.jpg" imageAlt="La Passerelle Bar - Ambiance chaleureuse" buttons={[ -- 2.49.1 From 626e52c4344c13c2f49636c1f4abc58f12b9f321 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 16:17:34 +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..762a584 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); - +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