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";
export const LoginRedirectPage = () => {
const nextPath = new URLSearchParams(window.location.search).get("next") ?? "/";
const encodedNext = encodeURIComponent(nextPath);
return (
);
};