From 8afe0b6999a3cd35961190ffc70129c293248252 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 08:54:42 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 82618de..18100ef 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -20,7 +20,7 @@ export default function LandingPage() { borderRadius="rounded" contentWidth="compact" sizing="largeSizeMediumTitles" - background="grid" + background="circleGradient" cardStyle="subtle-shadow" primaryButtonStyle="primary-glow" secondaryButtonStyle="layered" @@ -46,7 +46,7 @@ export default function LandingPage() { description="KIWORKS helps companies train employees to safely and efficiently use AI tools in their daily work through structured learning paths, real-world use cases and workflow templates." tag="AI-Powered Learning Platform" tagAnimation="slide-up" - background={{ variant: "grid" }} + background={{ variant: "plain" }} buttons={[ { text: "Request Demo", href: "contact" }, { text: "Explore Platform", href: "solution" } @@ -109,13 +109,13 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" products={[ { - id: "cert-basic", name: "Basic AI Literacy", price: "Foundation Level", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATXNPvtCdozqOKn4zqvFBrN8QF/a-professional-kiworks-ai-competency-cer-1773219196069-c7ed35b9.png?_wi=1", imageAlt: "Basic AI Literacy Certificate" + id: "cert-basic", name: "Basic AI Literacy", price: "Foundation Level", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATXNPvtCdozqOKn4zqvFBrN8QF/a-professional-kiworks-ai-competency-cer-1773219196069-c7ed35b9.png", imageAlt: "Basic AI Literacy Certificate" }, { - id: "cert-intermediate", name: "AI Workflow Expert", price: "Intermediate Level", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATXNPvtCdozqOKn4zqvFBrN8QF/a-professional-kiworks-ai-competency-cer-1773219196069-c7ed35b9.png?_wi=2", imageAlt: "AI Workflow Expert Certificate" + id: "cert-intermediate", name: "AI Workflow Expert", price: "Intermediate Level", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATXNPvtCdozqOKn4zqvFBrN8QF/a-professional-kiworks-ai-competency-cer-1773219196069-c7ed35b9.png", imageAlt: "AI Workflow Expert Certificate" }, { - id: "cert-advanced", name: "Enterprise AI Leader", price: "Advanced Level", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATXNPvtCdozqOKn4zqvFBrN8QF/a-professional-kiworks-ai-competency-cer-1773219196069-c7ed35b9.png?_wi=3", imageAlt: "Enterprise AI Leader Certificate" + id: "cert-advanced", name: "Enterprise AI Leader", price: "Advanced Level", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATXNPvtCdozqOKn4zqvFBrN8QF/a-professional-kiworks-ai-competency-cer-1773219196069-c7ed35b9.png", imageAlt: "Enterprise AI Leader Certificate" } ]} /> -- 2.49.1 From e7c9d7e2a70b7e2cb57f718ece6b3b20aa94405f Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 08:54:42 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 62 ++++++++----------- 1 file changed, 25 insertions(+), 37 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..15e50f8 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,39 @@ -"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; + height?: 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 = 'Webild', + className = '', + width = 120, + height = 40, +}) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1