From 231d5ebc44c609179d9ae67bc46af5d55799a55f Mon Sep 17 00:00:00 2001 From: kimjaehyeon0101 <47347352-kimjaehyeon0101@users.noreply.replit.com> Date: Tue, 30 Sep 2025 03:21:08 +0000 Subject: [PATCH] Add a fixed footer to the article page for consistent navigation Appends the Footer component to the Article page layout to ensure persistent visibility. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 069d4324-6c40-4355-955e-c714a50de1ea Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/3df548ff-50ae-432f-9be4-25d34eccc983/069d4324-6c40-4355-955e-c714a50de1ea/DGb2VKl --- .replit | 4 ---- client/src/pages/Article.tsx | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.replit b/.replit index 0feb43d..e53b196 100644 --- a/.replit +++ b/.replit @@ -30,10 +30,6 @@ externalPort = 3003 localPort = 43349 externalPort = 3000 -[[ports]] -localPort = 46881 -externalPort = 4200 - [env] PORT = "5000" diff --git a/client/src/pages/Article.tsx b/client/src/pages/Article.tsx index 07b7d95..da04b2d 100644 --- a/client/src/pages/Article.tsx +++ b/client/src/pages/Article.tsx @@ -8,6 +8,7 @@ import { Input } from "@/components/ui/input"; import { TrendingUp, TrendingDown, DollarSign, Clock } from "lucide-react"; import { useToast } from "@/hooks/use-toast"; import { apiRequest, queryClient } from "@/lib/queryClient"; +import Footer from "@/components/Footer"; import type { Article, PredictionMarket } from "@shared/schema"; export default function Article() { @@ -364,6 +365,9 @@ export default function Article() { )} + + {/* Footer */} +