From b6882ffdd9f7e7028620141560e9b783f2b48b0c Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 05:16:25 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f382877..239485b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -21,7 +21,7 @@ export default function LandingPage() { borderRadius="soft" contentWidth="mediumLarge" sizing="largeSmall" - background="floatingGradient" + background="circleGradient" cardStyle="gradient-mesh" primaryButtonStyle="gradient" secondaryButtonStyle="solid" @@ -43,7 +43,7 @@ export default function LandingPage() {
@@ -76,7 +76,7 @@ export default function LandingPage() { buttons={[ { text: "Learn More", href: "#metrics" } ]} - buttonAnimation="entrance-slide" + buttonAnimation="none" useInvertedBackground={false} /> @@ -87,7 +87,7 @@ export default function LandingPage() { description="Comprehensive selection of premium plastic materials for all your wholesale needs" tag="Premium Quality" tagIcon={CheckCircle} - tagAnimation="entrance-slide" + tagAnimation="none" textboxLayout="default" useInvertedBackground={false} gridVariant="three-columns-all-equal-width" @@ -115,7 +115,7 @@ export default function LandingPage() { description="Partnering with top companies across manufacturing, packaging, and retail sectors" tag="Trusted Partners" tagIcon={Shield} - tagAnimation="entrance-slide" + tagAnimation="none" textboxLayout="default" useInvertedBackground={false} names={[ @@ -130,7 +130,7 @@ export default function LandingPage() { @@ -150,7 +150,7 @@ export default function LandingPage() { description="Find answers to common questions about our products and services" tag="Help & Support" tagIcon={HelpCircle} - tagAnimation="entrance-slide" + tagAnimation="none" textboxLayout="default" useInvertedBackground={false} faqs={[ @@ -173,10 +173,10 @@ export default function LandingPage() { id: "6", title: "What is your return and refund policy?", content: "We guarantee product quality. In case of any defects, damaged goods can be returned within 7 days for replacement or refund, with proper documentation." } ]} - faqsAnimation="entrance-slide" + faqsAnimation="none" imageSrc="http://img.b2bpic.net/free-photo/woman-working-tablet-standing-warehouse_259150-56877.jpg" imageAlt="Our state-of-the-art warehouse facility" - mediaAnimation="entrance-slide" + mediaAnimation="none" mediaPosition="left" animationType="smooth" /> @@ -188,7 +188,7 @@ export default function LandingPage() { description="Hear from satisfied businesses who trust Sahajanand Plastic for their wholesale needs" tag="Customer Testimonials" tagIcon={Star} - tagAnimation="entrance-slide" + tagAnimation="none" textboxLayout="default" useInvertedBackground={false} testimonials={[ @@ -225,7 +225,7 @@ export default function LandingPage() { useInvertedBackground={false} imageSrc="http://img.b2bpic.net/free-photo/people-taking-part-business-event_23-2149346626.jpg" imageAlt="Contact our team at Sahajanand Plastic" - mediaAnimation="entrance-slide" + mediaAnimation="none" mediaPosition="right" buttonText="Request Quote" /> -- 2.49.1 From b6928dd6104302e4a55360be5556c9f8c9ea2357 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 05:16:25 +0000 Subject: [PATCH 2/3] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 53 ++++++------------- 1 file changed, 16 insertions(+), 37 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..70cda4e 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,30 @@ -"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; } -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 = '' }) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1 From a3c41d465c5255840aab09c5694f6b2b9c2a8399 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 05:18:20 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 239485b..755dd1c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -60,7 +60,7 @@ export default function LandingPage() { { text: "View Products", href: "#products" } ]} buttonAnimation="none" - imageSrc="http://img.b2bpic.net/free-photo/high-angle-view-buckwheats-spoons-around-horizontal_176474-2321.jpg" + imageSrc="http://img.b2bpic.net/free-photo/high-angle-view-buckwheats-spoons-around-horizontal_176474-2321.jpg?_wi=1" imageAlt="Industrial plastic rolls and materials" mediaAnimation="none" imagePosition="right" @@ -233,7 +233,7 @@ export default function LandingPage() {