From 5c2e5b0e1078c121cfdbe762d33a65a7362e52ae Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Thu, 28 Aug 2025 15:06:15 +0000 Subject: [PATCH] Add consistent geometric design elements to all pages Update VideoPage and NotFound pages to include the same header and footer styling with floating triangle decorations, matching the homepage's visual design. Replit-Commit-Author: Agent Replit-Commit-Session-Id: d7424866-83d1-4486-a212-ac12b4c7becf Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/d7424866-83d1-4486-a212-ac12b4c7becf/Il9ea4g --- client/src/pages/VideoPage.tsx | 77 +++++++++++++++++++++++------ client/src/pages/not-found.tsx | 89 +++++++++++++++++++++++++++++----- 2 files changed, 140 insertions(+), 26 deletions(-) diff --git a/client/src/pages/VideoPage.tsx b/client/src/pages/VideoPage.tsx index 1268678..43a3ebd 100644 --- a/client/src/pages/VideoPage.tsx +++ b/client/src/pages/VideoPage.tsx @@ -119,24 +119,45 @@ export default function VideoPage() { } return ( -
- {/* Header */} -
-
-
-
-
+
+ {/* Header with triangle design */} +
+ {/* Triangle decorations in header - same as home page */} +
+
+
+ +
+
+ +
+
+ + +
+ + +
-

go4.video

-
-
+
@@ -282,6 +303,32 @@ export default function VideoPage() {
+ + {/* Footer - same as home page */} + ); } \ No newline at end of file diff --git a/client/src/pages/not-found.tsx b/client/src/pages/not-found.tsx index dba9f83..427dbb5 100644 --- a/client/src/pages/not-found.tsx +++ b/client/src/pages/not-found.tsx @@ -1,21 +1,88 @@ import { Card, CardContent } from "@/components/ui/card"; import { AlertCircle } from "lucide-react"; +import { Button } from "@/components/ui/button"; export default function NotFound() { return ( -
- - -
- -

404 Page Not Found

+
+ {/* Header - same as other pages */} +
+ {/* Triangle decorations in header */} +
+
+
+ +
+
+ +
+ +
+
-

- Did you forget to add the page to the router? -

- - + {/* 404 Content */} +
+ + +
+ +

404 Page Not Found

+

+ The page you're looking for doesn't exist or has been moved. +

+ +
+
+
+
+ + {/* Footer - same as other pages */} +
); }