From 689e9f7e949997a76e86616d24b2bd112bab6810 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 11:37:09 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 3dc4972..0909548 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import MetricCardTen from "@/components/sections/metrics/MetricCardTen"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import FaqBase from "@/components/sections/faq/FaqBase"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; -import { Cube, Image, Wand2, RefreshCw, Star } from "lucide-react"; +import { Image, Wand2, RefreshCw, Star } from "lucide-react"; export default function LandingPage() { return ( @@ -61,13 +61,13 @@ export default function LandingPage() { tag="Services" features={[ { - title: "3D Grundrisse", description: "Moderne Grundriss-Visualisierungen für bessere Verständlichkeit und Käuferengagement", icon: Cube, + title: "3D Grundrisse", description: "Moderne Grundriss-Visualisierungen für bessere Verständlichkeit und Käuferengagement", icon: Image, mediaItems: [ { imageSrc: "http://img.b2bpic.net/free-vector/isometric-view-modern-home-interior_23-2147914316.jpg", imageAlt: "3D floor plan visualization apartment layout" }, { - imageSrc: "http://img.b2bpic.net/free-photo/woman-using-laptop-minimal-decorated-room_23-2150407610.jpg?_wi=1", imageAlt: "immobilien visualization modern apartment interior" + imageSrc: "http://img.b2bpic.net/free-photo/woman-using-laptop-minimal-decorated-room_23-2150407610.jpg", imageAlt: "immobilien visualization modern apartment interior" } ] }, @@ -75,10 +75,10 @@ export default function LandingPage() { title: "Immobilien-Visualisierung", description: "Realistische Raumdarstellungen ideal für Neubau und Renovierungsprojekte", icon: Image, mediaItems: [ { - imageSrc: "http://img.b2bpic.net/free-photo/woman-using-laptop-minimal-decorated-room_23-2150407610.jpg?_wi=2", imageAlt: "Professionelle Immobilien Visualisierung" + imageSrc: "http://img.b2bpic.net/free-photo/woman-using-laptop-minimal-decorated-room_23-2150407610.jpg", imageAlt: "Professionelle Immobilien Visualisierung" }, { - imageSrc: "http://img.b2bpic.net/free-photo/business-executives-discussing-blueprint_107420-63897.jpg?_wi=1", imageAlt: "Fotorealistisches Rendering" + imageSrc: "http://img.b2bpic.net/free-photo/business-executives-discussing-blueprint_107420-63897.jpg", imageAlt: "Fotorealistisches Rendering" } ] }, @@ -86,10 +86,10 @@ export default function LandingPage() { title: "Bildbearbeitung", description: "Professionelle Aufbereitung von Immobilienfotos für ansprechende Exposés", icon: Wand2, mediaItems: [ { - imageSrc: "http://img.b2bpic.net/free-photo/business-executives-discussing-blueprint_107420-63897.jpg?_wi=2", imageAlt: "Professionelle Foto-Bearbeitung" + imageSrc: "http://img.b2bpic.net/free-photo/business-executives-discussing-blueprint_107420-63897.jpg", imageAlt: "Professionelle Foto-Bearbeitung" }, { - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-phone-plan_23-2148819858.jpg?_wi=1", imageAlt: "Bildbearbeitung Beispiel" + imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-phone-plan_23-2148819858.jpg", imageAlt: "Bildbearbeitung Beispiel" } ] }, @@ -97,10 +97,10 @@ export default function LandingPage() { title: "Virtuelles Renovieren", description: "Räume digital modernisieren damit Käufer das Potenzial erkennen", icon: RefreshCw, mediaItems: [ { - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-phone-plan_23-2148819858.jpg?_wi=2", imageAlt: "Virtuelle Renovierung Vorher-Nachher" + imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-phone-plan_23-2148819858.jpg", imageAlt: "Virtuelle Renovierung Vorher-Nachher" }, { - imageSrc: "http://img.b2bpic.net/free-photo/woman-using-laptop-minimal-decorated-room_23-2150407610.jpg?_wi=3", imageAlt: "Digitale Raumgestaltung" + imageSrc: "http://img.b2bpic.net/free-photo/woman-using-laptop-minimal-decorated-room_23-2150407610.jpg", imageAlt: "Digitale Raumgestaltung" } ] } -- 2.49.1 From f77f1d9ee55be3bc52f5613fc22303befef4ad24 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 11:37:10 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 64 ++++++++----------- 1 file changed, 28 insertions(+), 36 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..af0440a 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,43 @@ -"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; + textClassName?: string; } -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 = '', + textClassName = '', +}) => { return ( + + + + + + - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo; -- 2.49.1