import { Box, Flex } from "@chakra-ui/react"; import Head from "next/head"; export default function AppNav(props: { children: React.ReactNode; title?: string }) { return ( {props.title ? `${props.title} | Prompt Bench` : "Prompt Bench"} {/* Placeholder for now */} {props.children} ); }