1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import { Text } from "@/components/ui/Text"; import { cx } from "class-variance-authority"; export default function PageTitle({ title, className, }: { title: string; className?: string; }) { return ( <Text className={cx("p-4 text-4xl font-bold text-foreground", className)}> {title} </Text> ); }