"use client"; import Link from "next/link"; import { Home, Compass } from "lucide-react"; import { motion } from "motion/react"; import { Button } from "@/components/ui/button"; export function InvalidRouteScreen() { return (
{/* Ambient Background */}
{/* 404 Code */}

404

{/* Content */}
Page not found

This page doesn't exist

The URL you entered doesn't match any known route. Double-check the address or return to the homepage.

{/* Action */} {/* Decorative footer */}
LexiChain
); }