From 0abbeb8a4c8bd216d3723337e1e138d0ea5ad857 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 04:46:28 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 91d2a2d..3315e4c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -19,7 +19,7 @@ export default function LandingPage() { borderRadius="rounded" contentWidth="mediumSmall" sizing="mediumSizeLargeTitles" - background="fluid" + background="circleGradient" cardStyle="outline" primaryButtonStyle="diagonal-gradient" secondaryButtonStyle="solid" @@ -44,17 +44,17 @@ export default function LandingPage() { title="Quality Residential Construction Since 2009" description="Licensed residential contractor serving Johnson County, MO and surrounding Kansas areas. We build homes with craftsmanship, integrity, and attention to detail." tag="Licensed Contractor" - background={{ variant: "fluid" }} + background={{ variant: "sparkles-gradient" }} buttons={[ { text: "Get a Quote", href: "contact" }, { text: "View Our Work", href: "portfolio" } ]} mediaItems={[ - { imageSrc: "http://img.b2bpic.net/free-photo/side-view-people-working-together_23-2149366697.jpg?_wi=1", imageAlt: "residential construction home building exterior" }, - { imageSrc: "http://img.b2bpic.net/free-photo/view-old-abandoned-house-nature_23-2150166537.jpg?_wi=1", imageAlt: "completed residential home construction exterior" }, - { imageSrc: "http://img.b2bpic.net/free-photo/interior-shot-luxurious-house-dining-room_181624-10412.jpg?_wi=1", imageAlt: "residential kitchen remodeling interior design" }, - { imageSrc: "http://img.b2bpic.net/free-photo/ai-generated-modern-styled-entryway_23-2150692405.jpg?_wi=1", imageAlt: "new residential home exterior construction" }, - { imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-working-as-plumber_23-2150746322.jpg?_wi=1", imageAlt: "home remodeling bathroom renovation professional" } + { imageSrc: "http://img.b2bpic.net/free-photo/side-view-people-working-together_23-2149366697.jpg", imageAlt: "residential construction home building exterior" }, + { imageSrc: "http://img.b2bpic.net/free-photo/view-old-abandoned-house-nature_23-2150166537.jpg", imageAlt: "completed residential home construction exterior" }, + { imageSrc: "http://img.b2bpic.net/free-photo/interior-shot-luxurious-house-dining-room_181624-10412.jpg", imageAlt: "residential kitchen remodeling interior design" }, + { imageSrc: "http://img.b2bpic.net/free-photo/ai-generated-modern-styled-entryway_23-2150692405.jpg", imageAlt: "new residential home exterior construction" }, + { imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-working-as-plumber_23-2150746322.jpg", imageAlt: "home remodeling bathroom renovation professional" } ]} /> @@ -97,22 +97,22 @@ export default function LandingPage() { Date: Wed, 11 Mar 2026 04:46:29 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 65 ++++++++----------- 1 file changed, 28 insertions(+), 37 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..54001ef 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,42 @@ -"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; + fill?: 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, + className = '', + width = 200, + height = 50, + fill = 'currentColor', +}) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1