From d7f6f4107f8538614a3dffa48eb5085dfba9efb0 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 21:58:21 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 19c2b63..1441803 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -79,15 +79,15 @@ export default function LandingPage() { features={[ { id: "1", title: "Complete Anonymity", tags: ["Privacy", "Security"], - imageSrc: "http://img.b2bpic.net/free-vector/data-protection-line-banners-set_1284-7762.jpg?_wi=1", imageAlt: "Anonymous protection icon" + imageSrc: "http://img.b2bpic.net/free-vector/data-protection-line-banners-set_1284-7762.jpg", imageAlt: "Anonymous protection icon" }, { id: "2", title: "Moderated Community", tags: ["Safety", "Trust"], - imageSrc: "http://img.b2bpic.net/free-photo/woman-going-through-notes-notebook_53876-30773.jpg?_wi=1", imageAlt: "Content moderation process" + imageSrc: "http://img.b2bpic.net/free-photo/woman-going-through-notes-notebook_53876-30773.jpg", imageAlt: "Content moderation process" }, { id: "3", title: "Emotional Relief", tags: ["Wellness", "Support"], - imageSrc: "http://img.b2bpic.net/free-photo/coffee-notebook-autumn-leaves-background_23-2148255760.jpg?_wi=1", imageAlt: "Personal healing and catharsis" + imageSrc: "http://img.b2bpic.net/free-photo/coffee-notebook-autumn-leaves-background_23-2148255760.jpg", imageAlt: "Personal healing and catharsis" } ]} animationType="slide-up" @@ -106,13 +106,13 @@ export default function LandingPage() { tag="Community" products={[ { - id: "1", name: "No Real Names", price: "Keep it Anonymous", imageSrc: "http://img.b2bpic.net/free-vector/data-protection-line-banners-set_1284-7762.jpg?_wi=2", imageAlt: "Anonymous protection" + id: "1", name: "No Real Names", price: "Keep it Anonymous", imageSrc: "http://img.b2bpic.net/free-vector/data-protection-line-banners-set_1284-7762.jpg", imageAlt: "Anonymous protection" }, { - id: "2", name: "No Locations", price: "Protect Identities", imageSrc: "http://img.b2bpic.net/free-photo/woman-going-through-notes-notebook_53876-30773.jpg?_wi=2", imageAlt: "Location privacy" + id: "2", name: "No Locations", price: "Protect Identities", imageSrc: "http://img.b2bpic.net/free-photo/woman-going-through-notes-notebook_53876-30773.jpg", imageAlt: "Location privacy" }, { - id: "3", name: "No Hate or Threats", price: "Maintain Respect", imageSrc: "http://img.b2bpic.net/free-photo/coffee-notebook-autumn-leaves-background_23-2148255760.jpg?_wi=2", imageAlt: "Safe community" + id: "3", name: "No Hate or Threats", price: "Maintain Respect", imageSrc: "http://img.b2bpic.net/free-photo/coffee-notebook-autumn-leaves-background_23-2148255760.jpg", imageAlt: "Safe community" } ]} gridVariant="three-columns-all-equal-width" @@ -141,7 +141,6 @@ export default function LandingPage() { id: "4", name: "Casey R., Advocate", date: "Date: 05 January 2025", title: "A safe space that works", quote: "The moderation here is thoughtful and the community feels genuinely supportive. This is what an anonymous platform should be—honest, safe, and kind.", tag: "Community", avatarSrc: "http://img.b2bpic.net/free-photo/medium-shot-unknown-woman-posing_23-2149417556.jpg", avatarAlt: "Casey R.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-unknown-woman-posing_23-2149417556.jpg", imageAlt: "Casey's story" } ]} - animationType="slide-up" textboxLayout="default" useInvertedBackground={true} /> -- 2.49.1 From 48c6c5849433fc20474c7ef339b8b7cd04a9f394 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 21:58:21 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 49 +++++-------------- 1 file changed, 13 insertions(+), 36 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..406da53 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,28 @@ -"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"; className?: string; } -const SvgTextLogo = memo(function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +const SvgTextLogo: React.FC = ({ className }) => { return ( - {logoText} + Logo ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo; -- 2.49.1