import { Card, CardContent } from "@/components/ui/card";
import { AlertCircle } from "lucide-react";
import { Button } from "@/components/ui/button";
import go4LogoPath from "@assets/go4_1756394900352.png";
export default function NotFound() {
return (
{/* Header - same as other pages */}
{/* Triangle decorations in header */}
{/* Mobile Menu Button */}
{/* Background logo decorations */}
{/* 404 Content */}
404 Page Not Found
The page you're looking for doesn't exist or has been moved.
{/* Footer - same as other pages */}
);
}