// import { Page, Card, Text } from "@shopify/polaris";
// export default function NotFound() {
// return (
//
//
//
// 404 - Page Not Found
//
//
// The page you are looking for does not exist.
//
//
//
// );
// }
import {Page, Card, Text, Button, Box, BlockStack, InlineStack, Link} from "@shopify/polaris";
export default function NotFound() {
return (
{/* Animated gradient background */}
{/* Content layer */}
{/* Glassy card with subtle border glow */}
{/* Decorative SVG */}
404
404 — Page not found
The page you’re looking for doesn’t exist or may have moved.
{/* Actions */}
{
// keep SPA routers happy—adjust if you use react-router/next/navigation
}}
>
Go to dashboard
window.history.length > 1 ? window.history.back() : (window.location.href = "/")}>
Go back
window.location.reload()}>
Reload
{/* Helpful links (optional) */}
Or check{" "}
Help Center{" "}
or{" "}
Contact support.
{/* component-scoped styles */}
);
}