export const PlaceholderPage = ({ title }: { title: string }) => { return (

{title}

This page is part of the frontend foundation scaffold.

); }; export const NotFoundPage = () => { return (

404

The page you requested does not exist.

); }; const API_BASE_URL = import.meta.env.VITE_API_BASE_URL ?? "http://localhost:8000"; import { Icon } from "../components/icon"; export const LoginRedirectPage = () => { const nextPath = new URLSearchParams(window.location.search).get("next") ?? "/"; const encodedNext = encodeURIComponent(nextPath); return (

Sign in required

You need to authenticate to access this section.

Continue to login
); };