From 10dc8f9a2e85c0282ddcc688ca40280e59229631 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 04:02:37 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index e8357e5..a150b40 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -20,7 +20,7 @@ export default function LandingPage() { borderRadius="soft" contentWidth="compact" sizing="large" - background="aurora" + background="circleGradient" cardStyle="glass-depth" primaryButtonStyle="diagonal-gradient" secondaryButtonStyle="radial-glow" @@ -50,7 +50,7 @@ export default function LandingPage() { { text: "Learn More", href: "#about" } ]} buttonAnimation="slide-up" - background={{ variant: "aurora" }} + background={{ variant: "rotated-rays-animated-grid" }} imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AmdIZJoO8z9uzX0tATHnhDpi7e/smartphone-app-interface-mockup-showing--1773201666675-8f84d3cc.png" imageAlt="MIT App Inventor smartphone mockup with colorful coding blocks" mediaAnimation="blur-reveal" @@ -83,7 +83,7 @@ export default function LandingPage() { title: "Real-World Skills", description: "Building practical programming knowledge applicable to future tech careers and education", icon: Lightbulb } ]} - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AmdIZJoO8z9uzX0tATHnhDpi7e/soft-blue-and-white-gradient-background--1773201666254-ff5e1594.png?_wi=1" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AmdIZJoO8z9uzX0tATHnhDpi7e/soft-blue-and-white-gradient-background--1773201666254-ff5e1594.png" imageAlt="Digital innovation background with blue, white, and yellow gradients" mediaAnimation="slide-up" imagePosition="right" @@ -97,7 +97,7 @@ export default function LandingPage() { Date: Wed, 11 Mar 2026 04:02:37 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 64 ++++++++----------- 1 file changed, 27 insertions(+), 37 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..ea5cd44 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,41 @@ -"use client"; +import React, { SVGProps } from 'react'; -import { memo } from "react"; -import useSvgTextLogo from "./useSvgTextLogo"; -import { cls } from "@/lib/utils"; - -interface SvgTextLogoProps { - logoText: string; - adjustHeightFactor?: number; - verticalAlign?: "top" | "center"; +interface SvgTextLogoProps extends SVGProps { + text?: string; className?: string; } -const SvgTextLogo = memo(function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +export const SvgTextLogo: React.FC = ({ + text = 'Logo', + className = '', + ...props +}) => { return ( + + + + + + - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo; -- 2.49.1