import { clsx } from "clsx"; import type { FC, PropsWithChildren } from "react"; import styles from "./PageLayout.module.css"; type PageLayoutProps = PropsWithChildren<{ borderTopColor?: "amber" | "indigo" | "purple"; }>; export const PageLayout: FC = ({ borderTopColor = "purple", children, ...otherProps }) => (
{children}
); export const PageLayoutPane: FC = (props) => (
); export const PageLayoutHeader: FC = (props) => (
); export const PageLayoutContent: FC = ({ children, ...otherProps }) => (
{children}
);