From 6735850e9297b187ae53031d97e799e8152c651a Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 15:03:16 +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 318ca3f..c232bfb 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -21,7 +21,7 @@ export default function LandingPage() { borderRadius="soft" contentWidth="small" sizing="large" - background="floatingGradient" + background="circleGradient" cardStyle="soft-shadow" primaryButtonStyle="gradient" secondaryButtonStyle="radial-glow" @@ -46,7 +46,7 @@ export default function LandingPage() { title="Experience the Art of Teppanyaki" description="Witness master chefs transform premium ingredients into culinary theater at Kurogane, Tokyo's finest steakhouse. Premium wagyu, theatrical presentation, and unforgettable flavors." tag="Premium Japanese Steakhouse" - background={{ variant: "floatingGradient" }} + background={{ variant: "sparkles-gradient" }} buttons={[ { text: "Reserve Your Table", href: "contact" }, { text: "View Menu", href: "experience" } @@ -218,7 +218,7 @@ export default function LandingPage() { tag="Reserve Your Experience" title="Book Your Table at Kurogane" description="Secure your reservation for an evening of culinary excellence. Our team will confirm your preferred date and time within 24 hours." - background={{ variant: "floatingGradient" }} + background={{ variant: "sparkles-gradient" }} useInvertedBackground={false} inputPlaceholder="Enter your email address" buttonText="Request Reservation" -- 2.49.1 From 7960e1c0391322e547a39e0cb8b157dc83d81056 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 15:03:17 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 56 +++++++------------ 1 file changed, 19 insertions(+), 37 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..16b9088 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,33 @@ -"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; + textClassName?: 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 = '', + textClassName = '', +}) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1