import { RadioIcon } from "@heroicons/react/24/solid"; import { NavLink } from "@remix-run/react"; import type { ReactNode } from "react"; import type { TagWithStationsClientSide } from "~/models/tag.server"; import type { UserWithFavoriteStationsClientSide } from "~/models/user.server"; export type PageLayoutProps = { children: ReactNode; tags: TagWithStationsClientSide[]; user?: UserWithFavoriteStationsClientSide } export function PageLayout({ children, tags, user }: PageLayoutProps) { return (

Awesome Radio

{children}
); }