From 52ccfc324cf8d65f3cc49807fb08c0837b25aeb7 Mon Sep 17 00:00:00 2001 From: kimjaehyeon0101 <47347352-kimjaehyeon0101@users.noreply.replit.com> Date: Wed, 1 Oct 2025 05:45:58 +0000 Subject: [PATCH] Restored to '0894a95fa90f5d79483f1bc98af2ccf244dd36eb' Replit-Restored-To: 0894a95fa90f5d79483f1bc98af2ccf244dd36eb --- .replit | 4 ---- client/src/components/MainContent.tsx | 3 +-- client/src/index.css | 19 ------------------- 3 files changed, 1 insertion(+), 25 deletions(-) diff --git a/.replit b/.replit index f8317a4..e53b196 100644 --- a/.replit +++ b/.replit @@ -14,10 +14,6 @@ run = ["npm", "run", "start"] localPort = 5000 externalPort = 80 -[[ports]] -localPort = 33997 -externalPort = 4200 - [[ports]] localPort = 34047 externalPort = 3002 diff --git a/client/src/components/MainContent.tsx b/client/src/components/MainContent.tsx index 683981e..c32a837 100644 --- a/client/src/components/MainContent.tsx +++ b/client/src/components/MainContent.tsx @@ -73,14 +73,13 @@ export default function MainContent() { const renderOutletCard = (outlet: MediaOutlet) => { const articleCount = articleCountByOutlet[outlet.id] || 0; const hasArticles = articleCount > 0; - const isErlingHaaland = outlet.slug === 'erling-haaland'; return ( {hasArticles && ( diff --git a/client/src/index.css b/client/src/index.css index 759d9af..98629d1 100644 --- a/client/src/index.css +++ b/client/src/index.css @@ -137,29 +137,10 @@ animation: float 3s ease-in-out infinite; } - @keyframes shake { - 0%, 100% { - transform: translateX(0) rotate(0deg); - } - 10%, 30%, 50%, 70%, 90% { - transform: translateX(-2px) rotate(-1deg); - } - 20%, 40%, 60%, 80% { - transform: translateX(2px) rotate(1deg); - } - } - - .animate-shake { - animation: shake 0.5s ease-in-out infinite; - } - @media (prefers-reduced-motion: reduce) { .animate-float { animation: none; } - .animate-shake { - animation: none; - } } .card-hover:hover {