From 585f6982c9eddd22ab032b59d527af45f1e1aabe Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 13:46:49 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 4f38afa..43a674c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,7 +8,7 @@ import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwen import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import ContactText from '@/components/sections/contact/ContactText'; import FooterMedia from '@/components/sections/footer/FooterMedia'; -import { Croissant, Gem, Palette, Flame, Heart, Sparkles, MapPin } from 'lucide-react'; +import { Croissant, Gem, Palette, Flame, Heart, Sparkles, MapPin, Star, Award } from 'lucide-react'; export default function LandingPage() { return ( @@ -18,7 +18,7 @@ export default function LandingPage() { borderRadius="rounded" contentWidth="smallMedium" sizing="mediumLarge" - background="floatingGradient" + background="circleGradient" cardStyle="solid" primaryButtonStyle="flat" secondaryButtonStyle="layered" @@ -43,13 +43,13 @@ export default function LandingPage() { From d593ecd1840e8613a9d26a47027e313b0c5e6b4d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 13:46:49 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 73 +++++++++---------- 1 file changed, 36 insertions(+), 37 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..86cb039 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,50 @@ -"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; + fill?: string; + stroke?: string; + strokeWidth?: number; } -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 = '', + fill = 'currentColor', + stroke = 'none', + strokeWidth = 0, +}) => { return ( + + + - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file