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 */} +
); }