From a88699539f3541e4382803ee96d46cde81012bb8 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 09:08:30 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 5e99fdb..b5222b7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,7 +11,7 @@ import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCar import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterBase from '@/components/sections/footer/FooterBase'; -import { Award, Chef, Globe, Mail, Quote, Sparkles } from 'lucide-react'; +import { Award, Globe, Mail, Sparkles } from 'lucide-react'; export default function LandingPage() { return ( @@ -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" @@ -47,7 +47,7 @@ export default function LandingPage() { description="Discover the pinnacle of premium beef dining. Artfully sourced authentic A5 wagyu, prepared by master chefs with decades of tradition." tag="Premium Steakhouse" tagIcon={Sparkles} - background={{ variant: "floatingGradient" }} + background={{ variant: "plain" }} mediaItems={[ { imageSrc: "http://img.b2bpic.net/free-photo/pork-sliced-grilling-pan_1339-6858.jpg", imageAlt: "Premium wagyu steak sizzling on grill" }, { imageSrc: "http://img.b2bpic.net/free-photo/fresh-meat-with-green-sauce-tomato_140725-9524.jpg", imageAlt: "Elegant steakhouse interior with warm lighting" }, @@ -77,6 +77,7 @@ export default function LandingPage() { imageAlt="Master chef with decades of expertise" useInvertedBackground={true} mediaAnimation="slide-up" + metricsAnimation="slide-up" /> @@ -85,7 +86,7 @@ export default function LandingPage() { title="Premium Wagyu Selection" description="Handpicked selections from Japan's finest ranches, each cut represents perfection in marbling, texture, and flavor." tag="Signature Cuts" - tagIcon={Chef} + tagIcon={Globe} textboxLayout="default" useInvertedBackground={false} products={[ @@ -238,7 +239,7 @@ export default function LandingPage() { tag="Newsletter" title="Stay Connected with Kobe Prime" description="Subscribe for exclusive dining invitations, seasonal menu highlights, and special offers reserved for our community." - background={{ variant: "floatingGradient" }} + background={{ variant: "plain" }} useInvertedBackground={true} tagIcon={Mail} inputPlaceholder="Your email address" -- 2.49.1 From 8e9628a9623c1a46a541dffb9b9ca48289c46e81 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 09:08:30 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 62 +++++++------------ 1 file changed, 24 insertions(+), 38 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..8631dee 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,37 @@ -"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; + width?: number | string; + height?: number | 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 = 'LOGO', + className = '', + width = 200, + height = 100, +}: SvgTextLogoProps) { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +} \ No newline at end of file -- 2.49.1