import * as React from "react" import clsx from "clsx" import { Container } from "./Container" import { FadeIn } from "./FadeIn" export function PageIntro({ eyebrow, title, children, centered = false, }: { eyebrow: string title: string | React.ReactNode children: React.ReactNode centered?: boolean }) { return (

{eyebrow} - {title}

{children}
) }