import { PoweredByFooter } from "@follow/components/common/PoweredByFooter.jsx" import { Logo } from "@follow/components/icons/logo.jsx" import { Button } from "@follow/components/ui/button/index.js" import { useLocation } from "react-router" export const NotFound = () => { const location = useLocation() return (

You have come to a desert of knowledge where there is nothing.

Current path: {location.pathname}

) }