From 7ed639c9eaf005c1eb453842a3ff5f281291cfd7 Mon Sep 17 00:00:00 2001
From: Gabriel Kaszewski
Date: Fri, 29 May 2026 01:14:29 +0200
Subject: [PATCH] fix(frontend): remove emojis from landing page feature cards
and badges
---
thoughts-frontend/components/landing-features.tsx | 5 -----
thoughts-frontend/components/landing-page.tsx | 2 +-
2 files changed, 1 insertion(+), 6 deletions(-)
diff --git a/thoughts-frontend/components/landing-features.tsx b/thoughts-frontend/components/landing-features.tsx
index ecf36dd..4722d97 100644
--- a/thoughts-frontend/components/landing-features.tsx
+++ b/thoughts-frontend/components/landing-features.tsx
@@ -4,22 +4,18 @@ import { useEffect, useRef } from "react";
const FEATURES = [
{
- icon: "✍️",
title: "Say it in 128",
body: "Short, focused thoughts. No bloat, no essays.",
},
{
- icon: "🎨",
title: "Make it yours",
body: "Customize your profile with CSS. Full creative control.",
},
{
- icon: "🔒",
title: "Your audience, your rules",
body: "Public, followers-only, unlisted, or direct. You pick for each post.",
},
{
- icon: "🎬",
title: "Movies Diary",
body: "Your Movies Diary posts show up as rich cards with ratings and posters. Feels native.",
},
@@ -56,7 +52,6 @@ export function LandingFeatures() {
className="landing-card-animate glass-effect rounded-xl p-6 shadow-fa-md"
style={{ animationDelay: `${i * 100}ms` }}
>
- {f.icon}
{f.title}
{f.body}
diff --git a/thoughts-frontend/components/landing-page.tsx b/thoughts-frontend/components/landing-page.tsx
index b66cc43..d08bc26 100644
--- a/thoughts-frontend/components/landing-page.tsx
+++ b/thoughts-frontend/components/landing-page.tsx
@@ -120,7 +120,7 @@ export function LandingPage() {
open web.
- {["🐘 Mastodon", "📷 Pixelfed"].map((label) => (
+ {["Mastodon", "Pixelfed"].map((label) => (