import type { AppProps } from "next/app"; import MainPanel from "components/Panels/MainPanel"; import "tailwind.css"; import "@fontsource/zen-maru-gothic/500.css"; import "@fontsource/vollkorn/700.css"; export type CustomAppProps = { useSubPanel: boolean; useContentPanel: boolean; }; export function applyCustomAppProps( page: Function, customAppProps: CustomAppProps ) { page.customAppProps = customAppProps; } export default function AccordsLibraryApp(appProps: AppProps) { return (