From f1547e776f1414e2b48b18f49c8d8879d7b21eaf Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 09:45:52 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index da8f3a5..47198c6 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 Premium Japanese Steakhouse Excellence" description="Indulge in an extraordinary culinary journey featuring the finest Japanese Wagyu and Kobe beef, expertly prepared by master chefs using traditional and contemporary techniques." tag="Authentic Japanese Cuisine" - background={{ variant: "floatingGradient" }} + background={{ variant: "plain" }} mediaItems={[ { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=pveuhk", imageAlt: "Premium Japanese Wagyu beef preparation" @@ -94,7 +94,7 @@ export default function LandingPage() { description="Explore our curated collection of the world's finest Japanese beef cuts, each offering a unique flavor profile and dining experience." tag="Signature Menu" textboxLayout="default" - animationType="slide-up" + animationType="blur-reveal" useInvertedBackground={true} gridVariant="three-columns-all-equal-width" products={[ @@ -144,7 +144,7 @@ export default function LandingPage() { description="Our team of internationally recognized teppanyaki masters bring decades of culinary excellence and authentic Japanese training to every performance." tag="Executive Team" textboxLayout="default" - animationType="slide-up" + animationType="blur-reveal" useInvertedBackground={true} gridVariant="three-columns-all-equal-width" members={[ @@ -170,7 +170,7 @@ export default function LandingPage() { description="Hear from our valued guests who have experienced the pinnacle of Japanese steakhouse dining." tag="Testimonials" textboxLayout="default" - animationType="slide-up" + animationType="blur-reveal" useInvertedBackground={false} testimonials={[ { @@ -201,7 +201,7 @@ export default function LandingPage() { description="Everything you need to know about our premium Japanese steakhouse, from reservations to menu details." tag="Help & Information" textboxLayout="default" - animationType="slide-up" + animationType="smooth" useInvertedBackground={true} mediaPosition="right" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=9c4os9" @@ -236,7 +236,7 @@ export default function LandingPage() { tag="Get In Touch" title="Reserve Your Culinary Experience" description="Join us for an unforgettable evening of premium Japanese steakhouse excellence. Secure your reservation today." - background={{ variant: "floatingGradient" }} + background={{ variant: "plain" }} useInvertedBackground={false} inputPlaceholder="Enter your email" buttonText="Make Reservation" -- 2.49.1 From faee0bb529d83923bd05e3ce2296ac2ec5f894aa Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 09:45:52 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 58 +++++++------------ 1 file changed, 21 insertions(+), 37 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..467027b 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,35 @@ -"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; + fontSize?: number; + fontFamily?: 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 = '', + fontSize = 24, + fontFamily = 'Arial, sans-serif' +}) => { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +}; -- 2.49.1