import { RadioIcon } from "@heroicons/react/24/solid"; import type { ReactNode } from "react"; export type PageLayoutProps = { children: ReactNode; } export function PageLayout({ children }: PageLayoutProps) { return (