import { ZenTheme } from "@/lib/themes"; import { Button } from "./ui/button"; export default function ThemePage({ theme }: { theme: ZenTheme }) { return (

{theme.name}

{theme.description}

{theme.homepage && ( Visit Homepage )}
); }