import styled from '@emotion/styled'; import { SignInBackgroundMockPage } from '@/sign-in-background-mock/components/SignInBackgroundMockPage'; import { AppPath } from '@/types/AppPath'; import { MainButton } from '@/ui/input/button/components/MainButton'; import { PageTitle } from '@/ui/utilities/page-title/components/PageTitle'; import { AnimatedPlaceholder, AnimatedPlaceholderEmptyTextContainer, AnimatedPlaceholderErrorContainer, AnimatedPlaceholderErrorSubTitle, AnimatedPlaceholderErrorTitle, UndecoratedLink, } from 'twenty-ui'; const StyledBackDrop = styled.div` align-items: center; backdrop-filter: ${({ theme }) => theme.blur.light}; background: ${({ theme }) => theme.background.transparent.secondary}; display: flex; flex-direction: column; height: 100%; justify-content: center; left: 0; position: fixed; top: 0; width: 100%; z-index: 10000; `; const StyledButtonContainer = styled.div` width: 200px; `; export const NotFound = () => { return ( <> Off the beaten path The page you're seeking is either gone or never was. Let's get you back on track ); };