mirror of
https://github.com/simstudioai/sim.git
synced 2026-02-14 00:15:09 -05:00
* feat(deployed-form): added deployed form input * styling consolidation, finishing touches on form * updated docs * remove unused files with knip * added more form fields * consolidated more test utils * remove unused/unneeded zustand stores, refactored stores for consistency * improvement(files): uncolorized plan name * feat(emcn): button-group * feat(emcn): tag input, tooltip shortcut * improvement(emcn): modal padding, api, chat, form * fix: deleted migrations * feat(form): added migrations * fix(emcn): tag input * fix: failing tests on build * add suplementary hover and fix bg color in date picker * fix: build errors --------- Co-authored-by: Emir Karabeg <emirkarabeg@berkeley.edu>
19 lines
539 B
TypeScript
19 lines
539 B
TypeScript
'use client'
|
|
|
|
import { useRouter } from 'next/navigation'
|
|
import { BrandedButton } from '@/app/(auth)/components/branded-button'
|
|
import { StatusPageLayout } from '@/app/(auth)/components/status-page-layout'
|
|
|
|
export default function NotFound() {
|
|
const router = useRouter()
|
|
|
|
return (
|
|
<StatusPageLayout
|
|
title='Page Not Found'
|
|
description="The page you're looking for doesn't exist or has been moved."
|
|
>
|
|
<BrandedButton onClick={() => router.push('/')}>Return to Home</BrandedButton>
|
|
</StatusPageLayout>
|
|
)
|
|
}
|