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() { { + 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;