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