import { type AppProps, Handlers } from "$fresh/server.ts"; import { type PublicUser } from "@/types.ts"; import { type ContextState } from "@/types.ts"; const NAV_ITEM_CLASSES = "flex justify-center items-center px-4 py-2 hover:bg-gray-300 dark:hover:bg-gray-700"; const HEADER_CLASSES = "bg-gray-200 dark:bg-gray-800"; export function LoginNavItems() { return ( <> Register Login ); } export function UserNavItems() { return ( <> Profile Dashboard Logout ); } export default function App( { Component, contextState }: AppProps, ) { return (
); }