From a3f16b19b9396222f8ec39d2650111e0f49e9719 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 06:52:01 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index bced6bd..3fca459 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -19,7 +19,7 @@ export default function LandingPage() { borderRadius="pill" contentWidth="smallMedium" sizing="largeSmallSizeMediumTitles" - background="fluid" + background="circleGradient" cardStyle="soft-shadow" primaryButtonStyle="flat" secondaryButtonStyle="radial-glow" @@ -46,7 +46,7 @@ export default function LandingPage() { description="Personalized fine dining experiences crafted with passion and precision. From intimate dinners to sophisticated gatherings, we bring restaurant-quality cuisine to your home." tag="Premium Dining" tagIcon={ChefHat} - background={{ variant: "fluid" }} + background={{ variant: "glowing-orb" }} imageSrc="http://img.b2bpic.net/free-photo/chef-working-together-professional-kitchen_23-2149727991.jpg" imageAlt="professional chef cooking gourmet kitchen" imagePosition="right" @@ -113,7 +113,7 @@ export default function LandingPage() { variant: "text", texts: ["Vegetarian", "Vegan", "Gluten-Free", "Keto", "Mediterranean"] }, { - title: "Menu Planning Process", description: "Collaborative planning for seasonal, themed, or custom menus", bentoComponent: "3d-task-list", title: "Menu Planning", items: [ + title: "Menu Planning Process", description: "Collaborative planning for seasonal, themed, or custom menus", bentoComponent: "3d-task-list", items: [ { icon: Lightbulb, label: "Concept", time: "Week 1" }, { icon: BookOpen, label: "Selection", time: "Week 2" }, { icon: CheckCircle, label: "Finalization", time: "Week 3" } @@ -193,7 +193,7 @@ export default function LandingPage() { tagIcon={Phone} title="Book Your Culinary Experience" description="Ready to elevate your dining? Contact us today for a personalized consultation to discuss your event, preferences, and culinary vision." - background={{ variant: "fluid" }} + background={{ variant: "sparkles-gradient" }} useInvertedBackground={false} imageSrc="http://img.b2bpic.net/free-photo/side-view-chef-cooking_23-2148471874.jpg" imageAlt="professional chef preparing fresh ingredients" -- 2.49.1 From 210285f6bd5d1728d381c9f203630138caf7d799 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 06:52:01 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 55 +++++-------------- 1 file changed, 13 insertions(+), 42 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..2f0653f 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,22 @@ -"use client"; - -import { memo } from "react"; -import useSvgTextLogo from "./useSvgTextLogo"; -import { cls } from "@/lib/utils"; - -interface SvgTextLogoProps { - logoText: string; - adjustHeightFactor?: number; - verticalAlign?: "top" | "center"; - className?: string; -} - -const SvgTextLogo = memo(function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); +import React, { SVGProps } from 'react'; +export default function SvgTextLogo(props: SVGProps) { return ( - {logoText} + Logo ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +} -- 2.49.1