diff --git a/src/app/page.tsx b/src/app/page.tsx index 2172bb5..afddb78 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -20,7 +20,7 @@ export default function LandingPage() { borderRadius="soft" contentWidth="compact" sizing="mediumLarge" - background="fluid" + background="circleGradient" cardStyle="outline" primaryButtonStyle="double-inset" secondaryButtonStyle="layered" @@ -49,7 +49,7 @@ export default function LandingPage() { { text: "View My Work", href: "#projects" }, { text: "Get In Touch", href: "#contact" } ]} - background={{ variant: "fluid" }} + background={{ variant: "sparkles-gradient" }} imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Am01pGVbxWblPlPQrPgqLBItpN/a-minimalist-ux-designer-workspace-with--1773182309163-8e161a89.png" imageAlt="UX Designer workspace with design tools and creative environment" frameStyle="card" @@ -100,7 +100,7 @@ export default function LandingPage() { features={[ { id: 1, - tag: "Discovery", title: "Research & Understand", subtitle: "Deep dive into user needs", description: "I start by understanding your users through interviews, surveys, and behavior analysis. This research phase informs every design decision and ensures we're solving real problems.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Am01pGVbxWblPlPQrPgqLBItpN/ux-research-process-visualization-showin-1773182309222-468bd469.png?_wi=1", imageAlt: "UX research process and user interviews" + tag: "Discovery", title: "Research & Understand", subtitle: "Deep dive into user needs", description: "I start by understanding your users through interviews, surveys, and behavior analysis. This research phase informs every design decision and ensures we're solving real problems.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Am01pGVbxWblPlPQrPgqLBItpN/ux-research-process-visualization-showin-1773182309222-468bd469.png", imageAlt: "UX research process and user interviews" }, { id: 2, @@ -108,7 +108,7 @@ export default function LandingPage() { }, { id: 3, - tag: "Validation", title: "Test & Refine", subtitle: "Gather feedback and improve", description: "User testing reveals what works and what doesn't. I use these insights to refine the design, ensuring the final product is intuitive, accessible, and delightful to use.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Am01pGVbxWblPlPQrPgqLBItpN/ux-research-process-visualization-showin-1773182309222-468bd469.png?_wi=2", imageAlt: "User testing and design validation process" + tag: "Validation", title: "Test & Refine", subtitle: "Gather feedback and improve", description: "User testing reveals what works and what doesn't. I use these insights to refine the design, ensuring the final product is intuitive, accessible, and delightful to use.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Am01pGVbxWblPlPQrPgqLBItpN/ux-research-process-visualization-showin-1773182309222-468bd469.png", imageAlt: "User testing and design validation process" } ]} title="My Design Process" diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..c71c9fe 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,35 @@ -"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); - - return ( - - ( + ({ text = 'Logo', className = '', ...props }, ref) => { + return ( + - {logoText} - - - ); -}); + + {text} + + + ); + } +); -SvgTextLogo.displayName = "SvgTextLogo"; +SvgTextLogo.displayName = 'SvgTextLogo'; export default SvgTextLogo;