Adjust layout for improved visual presentation across pages
Remove unused search header imports and change header positioning to static on multiple pages. 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/Z1wmn8z
This commit is contained in:
parent
bb7abf35c5
commit
327582adef
@ -6,7 +6,6 @@ import BunnyVideoModal from '@/components/bunny-video-modal';
|
||||
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';
|
||||
|
||||
@ -58,7 +57,7 @@ export default function FolxStadlPage() {
|
||||
return (
|
||||
<div className="min-h-screen bg-bunny-dark text-white">
|
||||
{/* Header */}
|
||||
<div className="bg-transparent relative overflow-hidden">
|
||||
<div className="bg-transparent relative overflow-hidden" style={{position: 'static'}}>
|
||||
<div className="max-w-7xl mx-auto px-4 py-4">
|
||||
<div className="flex items-center justify-between">
|
||||
{/* Left side - Logo */}
|
||||
|
||||
@ -32,7 +32,6 @@ const formatDate = (date: Date | string): string => {
|
||||
};
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { Share2, X, Edit3, Menu, Search, ChevronLeft, ChevronRight } from "lucide-react";
|
||||
import SearchHeader from "@/components/search-header";
|
||||
import { Input } from "@/components/ui/input";
|
||||
import { Link } from "wouter";
|
||||
import { apiRequest } from "@/lib/queryClient";
|
||||
@ -204,7 +203,7 @@ export default function VideoPage() {
|
||||
return (
|
||||
<div className="min-h-screen bunny-dark static-triangles">
|
||||
{/* Header */}
|
||||
<div className="bg-transparent relative overflow-hidden">
|
||||
<div className="bg-transparent relative overflow-hidden" style={{position: 'static'}}>
|
||||
<div className="max-w-7xl mx-auto px-4 py-4">
|
||||
<div className="flex items-center justify-between">
|
||||
{/* Left side - Logo */}
|
||||
|
||||
@ -1,7 +1,6 @@
|
||||
import { useState, useEffect } from "react";
|
||||
import { useQuery } from "@tanstack/react-query";
|
||||
import { type Video } from "@shared/schema";
|
||||
import SearchHeader from "@/components/search-header";
|
||||
import VideoGrid from "@/components/video-grid";
|
||||
import { Link } from "wouter";
|
||||
import { Input } from "@/components/ui/input";
|
||||
@ -76,7 +75,7 @@ export default function Home() {
|
||||
return (
|
||||
<div className="min-h-screen bunny-dark static-triangles">
|
||||
{/* Header */}
|
||||
<div className="bg-transparent relative overflow-hidden">
|
||||
<div className="bg-transparent relative overflow-hidden" style={{position: 'static'}}>
|
||||
<div className="max-w-7xl mx-auto px-4 py-4">
|
||||
<div className="flex items-center justify-between">
|
||||
{/* Left side - Logo */}
|
||||
|
||||
@ -7,7 +7,7 @@ export default function NotFound() {
|
||||
return (
|
||||
<div className="min-h-screen bunny-dark static-triangles">
|
||||
{/* Header - same as other pages */}
|
||||
<div className="bg-transparent relative overflow-hidden">
|
||||
<div className="bg-transparent relative overflow-hidden" style={{position: 'static'}}>
|
||||
{/* Triangle decorations in header */}
|
||||
<div className="absolute top-2 right-20 w-0 h-0 border-l-[35px] border-l-transparent border-r-[35px] border-r-transparent border-b-[50px] border-b-blue-400/15 rotate-12"></div>
|
||||
<div className="absolute top-3 left-1/3 w-0 h-0 border-l-[25px] border-l-transparent border-r-[25px] border-r-transparent border-b-[35px] border-b-purple-400/12 -rotate-6"></div>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user