feat: implement onboarding for non-registered users

This commit is contained in:
Aarnav Tale 2025-04-02 13:26:58 -04:00
parent 17d477bf0f
commit 80c987f383
No known key found for this signature in database
10 changed files with 522 additions and 14 deletions

View file

@ -1,4 +1,8 @@
import type { LinksFunction, MetaFunction } from 'react-router';
import type {
LinksFunction,
LoaderFunctionArgs,
MetaFunction,
} from 'react-router';
import {
Links,
Meta,
@ -14,6 +18,8 @@ import ToastProvider from '~/components/ToastProvider';
import stylesheet from '~/tailwind.css?url';
import { LiveDataProvider } from '~/utils/live-data';
import { useToastQueue } from '~/utils/toast';
import { LoadContext } from './server';
import log from './utils/log';
export const meta: MetaFunction = () => [
{ title: 'Headplane' },