import type { LinksFunction } from "@remix-run/node"; import { Outlet } from "@remix-run/react"; import { Main } from "~/components/Main"; import { SubNav, SubNavLink } from "~/components/SubNav"; import styles from "~/styles/plus.css"; import { type SendouRouteHandle } from "~/utils/remix"; import { navIconUrl, plusSuggestionPage } from "~/utils/urls"; export const links: LinksFunction = () => { return [{ rel: "stylesheet", href: styles }]; }; export const handle: SendouRouteHandle = { navItemName: "plus", breadcrumb: () => ({ imgPath: navIconUrl("plus"), href: plusSuggestionPage(), type: "IMAGE", }), }; export default function PlusPageLayout() { return (
Suggestions Results Voting
); }