import { Box, Title, Text, Button, Group, Stack, useMantineTheme } from '@mantine/core'; import { ArrowLeft } from 'phosphor-react'; // ← Importa el icono directamente import { Link } from 'react-router-dom'; import { MantineCardWithShader } from './HoloShader_404'; import { AppShellWithMenu } from '../Appshell/Appshell'; export function Error_404() { const theme = useMantineTheme(); return ( Página no encontrada Parece que la página que estás buscando no existe o fue removida. Pero no te preocupes, puedes volver al inicio fácilmente. ); }