From 3f00cf8b3bbd8d02e084d6ec437c0508433a28d7 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 13:24:12 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 3e0b3c3..bc14f78 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -47,9 +47,10 @@ export default function LandingPage() { tag="Go Hornets" tagIcon={Zap} tagAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/amateur-football-concept-with-team-stretching_23-2147833450.jpg?_wi=1" + imageSrc="http://img.b2bpic.net/free-photo/amateur-football-concept-with-team-stretching_23-2147833450.jpg" imageAlt="Romeoville High School soccer field" mediaAnimation="blur-reveal" + background={{ variant: "plain" }} testimonials={[ { name: "Marcus Johnson", handle: "Senior Midfielder", testimonial: "This program has transformed me as a player and as a person. The coaching staff genuinely cares about our development both on and off the field.", rating: 5, @@ -85,9 +86,10 @@ export default function LandingPage() { { value: "15+", title: "State Tournament Appearances" }, { value: "40+", title: "Players with D1 Scholarships" } ]} - imageSrc="http://img.b2bpic.net/free-photo/amateur-football-concept-with-team-stretching_23-2147833450.jpg?_wi=2" + imageSrc="http://img.b2bpic.net/free-photo/amateur-football-concept-with-team-stretching_23-2147833450.jpg" imageAlt="Romeoville soccer team in action" mediaAnimation="blur-reveal" + metricsAnimation="slide-up" useInvertedBackground={false} /> @@ -175,7 +177,7 @@ export default function LandingPage() { { text: "Learn More", href: "#about" } ]} buttonAnimation="slide-up" - background={{ variant: "glowing-orb" }} + background={{ variant: "plain" }} useInvertedBackground={false} /> -- 2.49.1 From 9ce8db4053430beebc4a47a7d17826393b37d408 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 13:24:12 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 55 ++++++------------- 1 file changed, 18 insertions(+), 37 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..7637430 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,32 @@ -"use client"; - -import { memo } from "react"; -import useSvgTextLogo from "./useSvgTextLogo"; -import { cls } from "@/lib/utils"; +import React, { CSSProperties } from 'react'; interface SvgTextLogoProps { - logoText: string; - adjustHeightFactor?: number; - verticalAlign?: "top" | "center"; + text: string; className?: string; + style?: CSSProperties; } -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 = '', style = {} }) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1