From 66824ab3ed2531890c689c4881abc390c09fad8f Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Sat, 30 Aug 2025 20:52:53 +0000 Subject: [PATCH] Add a search bar for videos to the main pages Integrates a search input and icon into the header navigation of the Folx Stadl, Video, and Home pages, enabling users to search for videos. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 074b0e4c-6171-43bd-aa98-f9e04623ca14 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/074b0e4c-6171-43bd-aa98-f9e04623ca14/lK7HRF1 --- client/src/pages/FolxStadlPage.tsx | 18 +++++++++++++++++- client/src/pages/VideoPage.tsx | 18 +++++++++++++++++- client/src/pages/home.tsx | 16 +++++++++++++++- 3 files changed, 49 insertions(+), 3 deletions(-) diff --git a/client/src/pages/FolxStadlPage.tsx b/client/src/pages/FolxStadlPage.tsx index 4fd4ad9..98c595f 100644 --- a/client/src/pages/FolxStadlPage.tsx +++ b/client/src/pages/FolxStadlPage.tsx @@ -7,6 +7,8 @@ import { Button } from '@/components/ui/button'; import { useState } from 'react'; import type { Video } from '@shared/schema'; import SearchHeader from '@/components/search-header'; +import { Input } from '@/components/ui/input'; +import { Search } from 'lucide-react'; export default function FolxStadlPage() { const [selectedVideo, setSelectedVideo] = useState